diff options
author | Robby Russell <robby@planetargon.com> | 2013-04-23 21:20:14 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2013-04-23 21:20:14 -0700 |
commit | dff6333b6dfeed247ef52b119f016b78d8b75323 (patch) | |
tree | 9df6d6f6b749be41f4069d56f239ef4d056f2bf8 /plugins/git-flow | |
parent | f44d403572ad17b857b9d0bd5b87b636772fc8db (diff) | |
parent | 02f86c4a5a5c6de55556413ac8f64f47d750294e (diff) | |
download | zsh-dff6333b6dfeed247ef52b119f016b78d8b75323.tar.gz zsh-dff6333b6dfeed247ef52b119f016b78d8b75323.tar.bz2 zsh-dff6333b6dfeed247ef52b119f016b78d8b75323.zip |
Merge branch 'master' of github.com:robbyrussell/oh-my-zsh
Diffstat (limited to 'plugins/git-flow')
-rw-r--r-- | plugins/git-flow/git-flow.plugin.zsh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/plugins/git-flow/git-flow.plugin.zsh b/plugins/git-flow/git-flow.plugin.zsh index ec21019e6..ab9c0c848 100644 --- a/plugins/git-flow/git-flow.plugin.zsh +++ b/plugins/git-flow/git-flow.plugin.zsh @@ -88,6 +88,8 @@ __git-flow-release () 'start:Start a new release branch.' 'finish:Finish a release branch.' 'list:List all your release branches. (Alias to `git flow release`)' + 'publish: public' + 'track: track' ) _describe -t commands 'git flow release' subcommands _arguments \ @@ -115,6 +117,16 @@ __git-flow-release () ':version:__git_flow_version_list' ;; + (publish) + _arguments \ + ':version:__git_flow_version_list'\ + ;; + + (track) + _arguments \ + ':version:__git_flow_version_list'\ + ;; + *) _arguments \ -v'[Verbose (more) output]' |