Unverified Commit 89ab38fe authored by Fidel Torres's avatar Fidel Torres Committed by Marc Cornellà

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

Closes #9439
parent 40e0e72c
...@@ -39,6 +39,10 @@ alias gflrf='git flow release finish' ...@@ -39,6 +39,10 @@ alias gflrf='git flow release finish'
alias gflhp='git flow hotfix publish' alias gflhp='git flow hotfix publish'
alias gflrp='git flow release publish' alias gflrp='git flow release publish'
alias gflfpll='git flow feature pull' 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 () _git-flow ()
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment