We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f873dd5 commit f135e72Copy full SHA for f135e72
contrib/completion/git-completion.bash
@@ -1391,15 +1391,15 @@ _git_config ()
1391
1392
_git_remote ()
1393
{
1394
- local subcommands="add rm show prune update"
+ local subcommands="add rename rm show prune update"
1395
local subcommand="$(__git_find_subcommand "$subcommands")"
1396
if [ -z "$subcommand" ]; then
1397
__gitcomp "$subcommands"
1398
return
1399
fi
1400
1401
case "$subcommand" in
1402
- rm|show|prune)
+ rename|rm|show|prune)
1403
__gitcomp "$(__git_remotes)"
1404
;;
1405
update)
0 commit comments