Rename git alias to better reflect name convention
This will rename the previous alias `gmv` to `gbm` to better reflect the naming as it will rename the branch not move a file. Also introduce `gmv` as an alias for `git mv` to move files.pull/937/head
parent
2cd5d9e0a5
commit
f5b83c2d8c
|
|
@ -15,6 +15,7 @@ alias gus='git reset HEAD'
|
|||
alias gpristine='git reset --hard && git clean -dfx'
|
||||
alias gclean='git clean -fd'
|
||||
alias gm="git merge"
|
||||
alias gmv='git mv'
|
||||
alias g='git'
|
||||
alias get='git'
|
||||
alias gst='git status'
|
||||
|
|
@ -42,7 +43,7 @@ alias gci='git commit --interactive'
|
|||
alias gb='git branch'
|
||||
alias gba='git branch -a'
|
||||
alias gbt='git branch --track'
|
||||
alias gmv='git branch -m'
|
||||
alias gbm='git branch -m'
|
||||
alias gcount='git shortlog -sn'
|
||||
alias gcp='git cherry-pick'
|
||||
alias gco='git checkout'
|
||||
|
|
|
|||
Loading…
Reference in New Issue