提交 a3b811a4 编写于 作者: D Dan McGee 提交者: Junio C Hamano

Update git-completion for new 'remote rm' option

Signed-off-by: NDan McGee <dpmcgee@gmail.com>
Signed-off-by: NJunio C Hamano <gitster@pobox.com>
上级 233808db
......@@ -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)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册