diff options
author | Hong Xu <hong@topbug.net> | 2013-11-30 12:46:19 -0800 |
---|---|---|
committer | Barton E. Schaefer <schaefer@zsh.org> | 2013-11-30 12:46:19 -0800 |
commit | 567b49403356ac54881679e3c95a1c4d3e95537f (patch) | |
tree | a09957d9dde0cdabcd9279213540ee058bcdac67 /Completion/Unix | |
parent | 9972fdeead12204192cd40e4331ff8f89434df04 (diff) | |
download | zsh-567b49403356ac54881679e3c95a1c4d3e95537f.tar.gz zsh-567b49403356ac54881679e3c95a1c4d3e95537f.tar.xz zsh-567b49403356ac54881679e3c95a1c4d3e95537f.zip |
32069: completion for "git submodule update --remote"
Diffstat (limited to 'Completion/Unix')
-rw-r--r-- | Completion/Unix/Command/_git | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git index b0114873b..43a01d9ff 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -1643,6 +1643,7 @@ _git-submodule () { '--rebase[rebase current branch onto commit recorded in superproject]' \ '--reference=[remote repository to clone]: :__git_any_repositories' \ '--recursive[traverse submodules recursively]' \ + '--remote[use the status of the submodule''s remote-tracking branch]' \ '--force[discard local changes by checking out the current up-to-date version]' \ '--init[initialize uninitialized submodules]' \ '*: :__git_ignore_line_inside_arguments __git_submodules' && ret=0 |