]> Untitled Git - hvutilities.git/commitdiff
Enlevé option -a pour git branch
authorHugo Villeneuve <hugo@hugovil.com>
Fri, 11 Apr 2014 13:47:53 +0000 (09:47 -0400)
committerHugo Villeneuve <hugo@hugovil.com>
Fri, 11 Apr 2014 13:47:59 +0000 (09:47 -0400)
Certains repositories ont tellement de branches que ça masque l'affichage des
branches locales.

scripts/vb

index 8473adf3919228c2d35aad5ceb727df743ec250c..b9cd8221d2b9a69c26cb481f58426b0f5f5d65ba 100755 (executable)
@@ -14,7 +14,7 @@ if [ "x${1}" = "x--help" ]; then
 fi
 
 if git diff 1> /dev/null 2>&1; then
-    git branch -a "$@"
+    git branch "$@"
 elif hg status 1> /dev/null 2>&1; then
     hg branches "$@"
 else