summaryrefslogtreecommitdiff
path: root/contrib/completion
diff options
context:
space:
mode:
authorStephen Boyd <bebarino@gmail.com>2009-10-09 06:21:43 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-10-09 22:00:24 (GMT)
commit427e586b197c94961b548c8a25ed721651fc335e (patch)
treea3821cade73b5b89d71d369b9ddf1c0a90a1cd96 /contrib/completion
parentb6aaaa4470ef578add390bb60292ed9b4cb4af3c (diff)
downloadgit-427e586b197c94961b548c8a25ed721651fc335e.zip
git-427e586b197c94961b548c8a25ed721651fc335e.tar.gz
git-427e586b197c94961b548c8a25ed721651fc335e.tar.bz2
completion: fix completion of git <TAB><TAB>
After commit 511a3fc (wrap git's main usage string., 2009-09-12), the bash completion for git commands includes COMMAND and [ARGS] when it shouldn't. Fix this by grepping more strictly for a line with git commands. It's doubtful whether git will ever have commands starting with anything besides numbers and letters so this should be fine. At least by being stricter we'll know when we break the completion earlier. Signed-off-by: Stephen Boyd <bebarino@gmail.com> Acked-by: Shawn O. Pearce <spearce@spearce.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/completion')
-rwxr-xr-xcontrib/completion/git-completion.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash
index 88b1b3c..652a47c 100755
--- a/contrib/completion/git-completion.bash
+++ b/contrib/completion/git-completion.bash
@@ -496,7 +496,7 @@ __git_all_commands ()
return
fi
local i IFS=" "$'\n'
- for i in $(git help -a|egrep '^ ')
+ for i in $(git help -a|egrep '^ [a-zA-Z0-9]')
do
case $i in
*--*) : helper pattern;;