Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
[PATCH 1/6] _git: Add git-clean -i/--interactive support
- X-seq: zsh-workers 31861
- From: Øystein Walle <oystwa@xxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: [PATCH 1/6] _git: Add git-clean -i/--interactive support
- Date: Sun, 20 Oct 2013 19:43:29 +0200
- Cc: Øystein Walle <oystwa@xxxxxxxxx>
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references :in-reply-to:references; bh=Mp6S9K9VAahATsI8KSpaLEJqWWkHijKnXt1OAv+KGTY=; b=UHjccPQL93nNnhJyDxfR5ogyEaDVw5272sa32w25Y0cKiBF42QteonZPnZMkaliAdJ T7GXPsVQ530Td9siNuepyI2YJiei9iQ7O7ZTHA63iP9IHK6e0bpzeZGukbM2+VmxhHPA wPt70qzzeFXUFikJfypygfTrpVJ+If3SE8EuiJKj9/p9mRYHj01/M9AZrmBWFl4vNi1v +3pZDTPsExqm73hSzyHFytFLxngUOuwsoqTkTgE88guJQJORQLoeC9B+m0lrj1KzufOz kXfabrQQ22+DTPRQ82468mTZAlvIvqWBtqeqa9ySaZBVWpNrfvNAHO8r3OxFH0hrYDN1 CZag==
- In-reply-to: <cover.1382290234.git.oystwa@gmail.com>
- In-reply-to: <cover.1382290234.git.oystwa@gmail.com>
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
- References: <cover.1382290234.git.oystwa@gmail.com>
- References: <cover.1382290234.git.oystwa@gmail.com>
- Add -i and --interactive to _git-clean()
- Add column.clean configuration variable
---
Completion/Unix/Command/_git | 2 ++
1 file changed, 2 insertions(+)
diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git
index db1ff2f..25f925f 100644
--- a/Completion/Unix/Command/_git
+++ b/Completion/Unix/Command/_git
@@ -508,6 +508,7 @@ _git-clean () {
_arguments -w -C -S -s \
'-d[also remove untracked directories]' \
'(-f --force)'{-f,--force}'[required when clean.requireForce is true (default)]' \
+ '(-i --interactive)'{-i,--interactive}'[show what would be done and clean files interactively]' \
'(-n --dry-run)'{-n,--dry-run}'[only show what would and what would not be removed]' \
'(-q --quiet)'{-q,--quiet}'[only report errors]' \
'*'{-e,--exclude=}'[skip files matching specified pattern]:pattern' \
@@ -1803,6 +1804,7 @@ _git-config () {
cvsexportcommit.cvsdir:'the default location of the CVS checkout to use for the export:cvs export dir:_directories'
column.ui:'specify whether supported commands should output in columns.::->column:never'
column.branch:'specify whether to output branch listing in git branch in columns::->column:never'
+ column.clean:'specify the layout when listing items in git clean -i::->column:never'
column.status:'specify whether to output untracked files in git status in columns::->column:never'
column.tag:'specify whether to output tag listing in git tag in columns::->column:never'
core.fileMode:'track changes to the executable bit of files::->bool:true'
--
1.8.4.1.516.g1d25dd4
Messages sorted by:
Reverse Date,
Date,
Thread,
Author