diff options
author | Junio C Hamano <gitster@pobox.com> | 2019-12-10 13:11:42 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-12-10 13:11:42 -0800 |
commit | 99c4ff1bdabc2122a7c6a2b8df87acdd0c2dd18f (patch) | |
tree | ef438c96a3f3f35644fefabf47a14fa10cea907e /contrib/completion/git-completion.bash | |
parent | Merge branch 'js/mingw-inherit-only-std-handles' (diff) | |
parent | submodule: teach set-url subcommand (diff) | |
download | tgif-99c4ff1bdabc2122a7c6a2b8df87acdd0c2dd18f.tar.xz |
Merge branch 'dl/submodule-set-url'
"git submodule" learned a subcommand "set-url".
* dl/submodule-set-url:
submodule: teach set-url subcommand
Diffstat (limited to 'contrib/completion/git-completion.bash')
-rw-r--r-- | contrib/completion/git-completion.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index 67705da641..b197f32f01 100644 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -2783,7 +2783,7 @@ _git_submodule () { __git_has_doubledash && return - local subcommands="add status init deinit update set-branch summary foreach sync absorbgitdirs" + local subcommands="add status init deinit update set-branch set-url summary foreach sync absorbgitdirs" local subcommand="$(__git_find_on_cmdline "$subcommands")" if [ -z "$subcommand" ]; then case "$cur" in |