diff options
author | Erich Menge <erich.menge@me.com> | 2012-06-03 12:44:14 -0500 |
---|---|---|
committer | Erich Menge <erich.menge@me.com> | 2012-06-03 12:44:14 -0500 |
commit | df30eae4121802f8ac800cb3e92c7d08356217a6 (patch) | |
tree | 7378bcde8f1430a1c49460074d5fe2254cccd322 /plugins/git-flow | |
parent | caa15548c107b9c31f61a67547ffab0b0cfe4934 (diff) | |
download | zsh-df30eae4121802f8ac800cb3e92c7d08356217a6.tar.gz zsh-df30eae4121802f8ac800cb3e92c7d08356217a6.tar.bz2 zsh-df30eae4121802f8ac800cb3e92c7d08356217a6.zip |
Add a couple of options for git-flow.
Diffstat (limited to 'plugins/git-flow')
-rw-r--r-- | plugins/git-flow/git-flow.plugin.zsh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/git-flow/git-flow.plugin.zsh b/plugins/git-flow/git-flow.plugin.zsh index 270bcbe38..71b343884 100644 --- a/plugins/git-flow/git-flow.plugin.zsh +++ b/plugins/git-flow/git-flow.plugin.zsh @@ -110,6 +110,8 @@ __git-flow-release () -u'[Use the given GPG-key for the digital signature (implies -s)]'\ -m'[Use the given tag message]'\ -p'[Push to $ORIGIN after performing finish]'\ + -k'[Keep branch after performing finish]'\ + -n"[Don't tag this release]"\ ':version:__git_flow_version_list' ;; @@ -162,6 +164,8 @@ __git-flow-hotfix () -u'[Use the given GPG-key for the digital signature (implies -s)]'\ -m'[Use the given tag message]'\ -p'[Push to $ORIGIN after performing finish]'\ + -k'[Keep branch after performing finish]'\ + -n"[Don't tag this release]"\ ':hotfix:__git_flow_hotfix_list' ;; |