Merge branch 'rs/ctype'
[gitweb.git] / contrib / completion / git-completion.bash
index a1298c4f9684a014067ba89a74977f48ac3e7bb9..703f4c2e90b034a996d993632a81553de02ceda8 100755 (executable)
@@ -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)