submodule: teach set-branch subcommand
[gitweb.git] / contrib / completion / git-completion.bash
index 499e56f83d0a0592abd53686612c79358780eef2..8b3b5a9d34590fbf025753d87c5a69ec77945239 100644 (file)
@@ -2573,7 +2573,7 @@ _git_submodule ()
 {
        __git_has_doubledash && return
 
-       local subcommands="add status init deinit update summary foreach sync"
+       local subcommands="add status init deinit update set-branch summary foreach sync"
        local subcommand="$(__git_find_on_cmdline "$subcommands")"
        if [ -z "$subcommand" ]; then
                case "$cur" in
@@ -2604,6 +2604,9 @@ _git_submodule ()
                        --force --rebase --merge --reference --depth --recursive --jobs
                "
                ;;
+       set-branch,--*)
+               __gitcomp "--default --branch"
+               ;;
        summary,--*)
                __gitcomp "--cached --files --summary-limit"
                ;;