From b61c1116662d0adac80eaccedad1365df9dcb5c5 Mon Sep 17 00:00:00 2001 From: fumseck Date: Fri, 15 Jul 2016 19:59:05 +0200 Subject: [PATCH] add alias --- plugins/git-flow/git-flow.plugin.zsh | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/plugins/git-flow/git-flow.plugin.zsh b/plugins/git-flow/git-flow.plugin.zsh index a8386cb19..556c82c14 100644 --- a/plugins/git-flow/git-flow.plugin.zsh +++ b/plugins/git-flow/git-flow.plugin.zsh @@ -21,10 +21,21 @@ # #Alias -alias gfl='git flow' -alias gcd='git checkout develop' -alias gch='git checkout hotfix' -alias gcr='git checkout release' + alias gfl='git flow' + alias gfli='git flow init' + alias gcd='git checkout develop' + alias gch='git checkout hotfix' + alias gcr='git checkout release' + alias gflf='git flow feature' + alias gflh='git flow hotfix' + alias gflr='git flow release' + alias gflfs='git flow feature start' + alias gflhs='git flow hotfix start' + alias gflrs='git flow release start' + alias gflff='git flow feature finish' + alias gflhf='git flow hotfix finish' + alias gflrf='git flow release finish' + _git-flow () {