aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan McGee <dpmcgee@gmail.com>2008-01-20 00:54:57 -0600
committerJunio C Hamano <gitster@pobox.com>2008-01-19 23:06:02 -0800
commita3b811a4914cf02bb25662e330a067c1b0ddbc75 (patch)
tree1e9880d4834dee2f0b1dc0be69508248c144786f
parent233808db1508ae2680987e0bb5abd33668ad76b4 (diff)
downloadgit-a3b811a4914cf02bb25662e330a067c1b0ddbc75.tar.gz
git-a3b811a4914cf02bb25662e330a067c1b0ddbc75.tar.xz
Update git-completion for new 'remote rm' option
Signed-off-by: Dan McGee <dpmcgee@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-xcontrib/completion/git-completion.bash6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash
index 9b0033d17..0d33f9a3d 100755
--- a/contrib/completion/git-completion.bash
+++ b/contrib/completion/git-completion.bash
@@ -970,18 +970,18 @@ _git_remote ()
while [ $c -lt $COMP_CWORD ]; do
i="${COMP_WORDS[c]}"
case "$i" in
- add|show|prune|update) command="$i"; break ;;
+ add|rm|show|prune|update) command="$i"; break ;;
esac
c=$((++c))
done
if [ $c -eq $COMP_CWORD -a -z "$command" ]; then
- __gitcomp "add show prune update"
+ __gitcomp "add rm show prune update"
return
fi
case "$command" in
- show|prune)
+ rm|show|prune)
__gitcomp "$(__git_remotes)"
;;
update)