diff options
author | Arthur Schneider <dev.schneiart@gmail.com> | 2017-11-01 14:09:31 +0100 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2017-11-01 06:09:31 -0700 |
commit | 0fc24140951e9015569080b1596a0d7536f93a0d (patch) | |
tree | 3477270c104ae10e70f7e37fb8201d66af2020d5 /plugins/git-flow | |
parent | 6d5b1f1e3be483bb09315d22a2175d1c97998167 (diff) | |
download | zsh-0fc24140951e9015569080b1596a0d7536f93a0d.tar.gz zsh-0fc24140951e9015569080b1596a0d7536f93a0d.tar.bz2 zsh-0fc24140951e9015569080b1596a0d7536f93a0d.zip |
Update git-flow aliases (#6335)
It is possible to pull and push branches to/from origin
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 bda050725..5f5e4aa73 100644 --- a/plugins/git-flow/git-flow.plugin.zsh +++ b/plugins/git-flow/git-flow.plugin.zsh @@ -35,6 +35,10 @@ alias gflrs='git flow release start' alias gflff='git flow feature finish' alias gflhf='git flow hotfix finish' alias gflrf='git flow release finish' +alias gflfp='git flow feature publish' +alias gflhp='git flow hotfix publish' +alias gflrp='git flow release publish' +alias gflfpll='git flow feature pull' _git-flow () { |