1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-12 08:50:08 +00:00

feat(git-flow): add aliases for current feature / release branch (#9439)

Closes #9439
This commit is contained in:
Fidel Torres 2020-11-13 05:21:48 +11:00 committed by Marc Cornellà
parent 40e0e72cd7
commit 89ab38fe64
No known key found for this signature in database
GPG key ID: 0314585E776A9C1B

View file

@ -39,6 +39,10 @@ alias gflrf='git flow release finish'
alias gflhp='git flow hotfix publish'
alias gflrp='git flow release publish'
alias gflfpll='git flow feature pull'
alias gflffc='git flow feature finish $(echo $(current_branch) | cut -c 9-)'
alias gflfpc='git flow feature publish $(echo $(current_branch) | cut -c 9-)'
alias gflrfc='git flow release finish $(echo $(current_branch) | cut -c 9-)'
alias gflrpc='git flow release publish $(echo $(current_branch) | cut -c 9-)'
_git-flow ()
{