Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
Avoid src:dst syntax as default bash completion for git push
[gitweb.git]
/
contrib
/
completion
/
git-completion.bash
diff --git
a/contrib/completion/git-completion.bash
b/contrib/completion/git-completion.bash
index 9e72f0f7b1668ba144397b6a6a2094d4294f5724..c7c9963347f036323ee5680a3b2918f20cd77eb1 100755
(executable)
--- a/
contrib/completion/git-completion.bash
+++ b/
contrib/completion/git-completion.bash
@@
-683,7
+683,7
@@
_git_push ()
__gitcomp "$(__git_refs "$remote")" "" "${cur#*:}"
;;
*)
- __gitcomp "$(__git_refs
2
)"
+ __gitcomp "$(__git_refs)"
;;
esac
;;