diff options
author | Clint Adams <clint@users.sourceforge.net> | 2008-08-18 01:52:40 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2008-08-18 01:52:40 +0000 |
commit | cbca622b5785ac2c284d823f6782125679c61313 (patch) | |
tree | 3bfec48617190c1ca0bb82055f40be52377a3650 /Completion/Unix/Command | |
parent | 45195791a81784ce6def23f24a2af420f246328e (diff) | |
download | zsh-cbca622b5785ac2c284d823f6782125679c61313.tar.gz zsh-cbca622b5785ac2c284d823f6782125679c61313.tar.xz zsh-cbca622b5785ac2c284d823f6782125679c61313.zip |
unposted: additional git branch options.
Diffstat (limited to 'Completion/Unix/Command')
-rw-r--r-- | Completion/Unix/Command/_git | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git index 9045479f1..a1d0e1ca3 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -1506,6 +1506,11 @@ _git-branch () { - create \ '-l[create the branch'\''s reflog]' \ '-f[force the creation of a new branch]' \ + '--track[set up configuration so pull merges from the start point]' \ + '--no-track[override the branch.autosetupmerge configuration variable]' \ + '--contains=[only list branches which contain the specified commit]:commit:__git_committishs' \ + '--merged[only list branches which are fully contained by HEAD]' \ + '--no-merged[do not list branches which are fully contained by HEAD]' \ ':branch-name:__git_branch_names' \ '::start-point:__git_revisions' \ - modify \ |