From: Dan McGee Date: Sun, 20 Jan 2008 06:54:57 +0000 (-0600) Subject: Update git-completion for new 'remote rm' option X-Git-Tag: v1.5.4-rc4~8 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a3b811a4914cf02bb25662e330a067c1b0ddbc75;p=git.git Update git-completion for new 'remote rm' option Signed-off-by: Dan McGee Signed-off-by: Junio C Hamano --- 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)