mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-18 03:40:08 +00:00
refactor(git-glow): Add config interpolation for git-flow messages (#7481)
Changed commands: gcd: uses gitflow.branch.develop to get user-set development branch gch: uses gitflow.prefix.hotfix to get user-set hotfix prefix gcr: uses gitflow.prefix.release to get user-set release prefix Co-authored-by: Fabio 'c0m3tx' Vitale <c0m3tx@gmail.com>
This commit is contained in:
parent
08751210e3
commit
77087aaa8d
1 changed files with 3 additions and 3 deletions
|
@ -23,9 +23,9 @@
|
|||
#Alias
|
||||
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 gcd='git checkout $(git config gitflow.branch.develop)'
|
||||
alias gch='git checkout $(git config gitflow.prefix.hotfix)'
|
||||
alias gcr='git checkout $(git config gitflow.prefix.release)'
|
||||
alias gflf='git flow feature'
|
||||
alias gflh='git flow hotfix'
|
||||
alias gflr='git flow release'
|
||||
|
|
Loading…
Reference in a new issue