projects
/
hvutilities.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
245defb
)
Enlevé option -a pour git branch
author
Hugo Villeneuve
<hugo@hugovil.com>
Fri, 11 Apr 2014 13:47:53 +0000
(09:47 -0400)
committer
Hugo 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
patch
|
blob
|
history
diff --git
a/scripts/vb
b/scripts/vb
index
8473adf
..
b9cd822
100755
(executable)
--- a/
scripts/vb
+++ b/
scripts/vb
@@
-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