Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

_git: There were two _git-clean(), add -s to the kept one.



From: Mikael Magnusson <mikachu@xxxxxxxxx>
Date: Tue, 2 Sep 2008 13:22:18 +0200
Subject: [PATCH] _git: There were two _git-clean(), add -s to the kept one.

---
 Completion/Unix/Command/_git |   12 +-----------
 1 files changed, 1 insertions(+), 11 deletions(-)

diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git
index 1f8d2a5..edea5f7 100644
--- a/Completion/Unix/Command/_git
+++ b/Completion/Unix/Command/_git
@@ -437,16 +437,6 @@ _git-checkout-index () {
     '*::file:__git_cached_files' && ret=0
 }

-(( $+functions[_git-clean] )) ||
-_git-clean () {
-  _arguments \
-    '-d[remove untracked directories]' \
-    '-n[just show what would be done]' \
-    '-q[be quiet, only report errors]' \
-    '(-X -x)-x[do use ignore rules]' \
-    '(-X -x)-X[remove only files ignored by git]' && ret=0
-}
-
 (( $+functions[_git-commit-tree] )) ||
 _git-commit-tree () {
   if (( CURRENT == 2 )); then
@@ -1611,7 +1601,7 @@ _git-cherry-pick () {

 (( $+functions[_git-clean] )) ||
 _git-clean () {
-  _arguments -S \
+  _arguments -S -s \
     '-d[also remove untracked directories]' \
     '-n[do a dry run]' \
     '-f[required when clean.requireForce is true (default)]' \
--
1.6.0.GIT


--
Mikael Magnusson



Messages sorted by: Reverse Date, Date, Thread, Author