Skip to content

Commit

Permalink
Update git-completion for new 'remote rm' option
Browse files Browse the repository at this point in the history
Signed-off-by: Dan McGee <dpmcgee@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Dan McGee authored and Junio C Hamano committed Jan 20, 2008
1 parent 233808d commit a3b811a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contrib/completion/git-completion.bash
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit a3b811a

Please sign in to comment.