Browse Source

bash completion: add 'rename' subcommand to git-remote

Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
Acked-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Markus Heidelberg 16 years ago committed by Junio C Hamano
parent
commit
f135e72d61
  1. 4
      contrib/completion/git-completion.bash

4
contrib/completion/git-completion.bash

@ -1391,7 +1391,7 @@ _git_config () @@ -1391,7 +1391,7 @@ _git_config ()

_git_remote ()
{
local subcommands="add rm show prune update"
local subcommands="add rename rm show prune update"
local subcommand="$(__git_find_subcommand "$subcommands")"
if [ -z "$subcommand" ]; then
__gitcomp "$subcommands"
@ -1399,7 +1399,7 @@ _git_remote () @@ -1399,7 +1399,7 @@ _git_remote ()
fi

case "$subcommand" in
rm|show|prune)
rename|rm|show|prune)
__gitcomp "$(__git_remotes)"
;;
update)

Loading…
Cancel
Save