mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-05-01 04:30:37 +02:00
add alias and comments
This commit is contained in:
parent
b61c111666
commit
0ee301aa63
2 changed files with 19 additions and 9 deletions
BIN
plugins/git-flow/.git-flow.plugin.zsh.swp
Normal file
BIN
plugins/git-flow/.git-flow.plugin.zsh.swp
Normal file
Binary file not shown.
|
|
@ -20,22 +20,32 @@
|
||||||
# c. Or, use this file as an oh-my-zsh plugin.
|
# c. Or, use this file as an oh-my-zsh plugin.
|
||||||
#
|
#
|
||||||
|
|
||||||
#Alias
|
# Git flow alias
|
||||||
alias gfl='git flow'
|
alias gfl='git flow'
|
||||||
alias gfli='git flow init'
|
alias gfli='git flow init'
|
||||||
alias gcd='git checkout develop'
|
|
||||||
alias gch='git checkout hotfix'
|
# feature
|
||||||
alias gcr='git checkout release'
|
|
||||||
alias gflf='git flow feature'
|
alias gflf='git flow feature'
|
||||||
alias gflh='git flow hotfix'
|
|
||||||
alias gflr='git flow release'
|
|
||||||
alias gflfs='git flow feature start'
|
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 gflff='git flow feature finish'
|
||||||
|
alias gflfd='git flow feature diff'
|
||||||
|
|
||||||
|
# develop
|
||||||
|
alias gcd='git checkout develop'
|
||||||
|
|
||||||
|
# hotfix
|
||||||
|
alias gflh='git flow hotfix'
|
||||||
|
alias gflh='git checkout hotfix'
|
||||||
|
alias gflhs='git flow hotfix start'
|
||||||
alias gflhf='git flow hotfix finish'
|
alias gflhf='git flow hotfix finish'
|
||||||
|
|
||||||
|
# release
|
||||||
|
alias gflr='git flow release'
|
||||||
|
alias gcr='git checkout release'
|
||||||
|
alias gflrs='git flow release start'
|
||||||
alias gflrf='git flow release finish'
|
alias gflrf='git flow release finish'
|
||||||
|
alias gcr='git checkout release'
|
||||||
|
alias gflrp='git flow release publish'
|
||||||
|
|
||||||
_git-flow ()
|
_git-flow ()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue