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>
This commit is contained in:
Markus Heidelberg 2009-01-21 20:14:55 +01:00 committed by Junio C Hamano
parent f873dd5ac2
commit f135e72d61

View File

@ -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 ()
fi
case "$subcommand" in
rm|show|prune)
rename|rm|show|prune)
__gitcomp "$(__git_remotes)"
;;
update)