diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-03-25 14:00:29 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-03-25 14:00:29 -0700 |
commit | b03b41e24c84731742e132d86ef3e449dcd6ec25 (patch) | |
tree | c6ce8797dcf0c8ff0f71fd03f2b6b4e184f10cd3 /contrib | |
parent | 4744b33705b7e4920cf7751ecafaac78927615b7 (diff) | |
parent | cf419828064d4f22a2c3134e7b46a7719462b1dc (diff) | |
download | git-b03b41e24c84731742e132d86ef3e449dcd6ec25.tar.gz |
Merge branch 'jl/submodule-deinit'
There was no Porcelain way to say "I no longer am interested in
this submodule", once you express your interest in a submodule with
"submodule init". "submodule deinit" is the way to do so.
* jl/submodule-deinit:
submodule: add 'deinit' command
Diffstat (limited to 'contrib')
-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 93eba46750..2ba1461422 100644 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -2419,7 +2419,7 @@ _git_submodule () { __git_has_doubledash && return - local subcommands="add status init update summary foreach sync" + local subcommands="add status init deinit update summary foreach sync" if [ -z "$(__git_find_on_cmdline "$subcommands")" ]; then case "$cur" in --*) |