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
Andreas Frömer 2017-04-11 18:41:13 +02:00 committed by GitHub
parent 2cd5d9e0a5
commit f5b83c2d8c
1 changed files with 2 additions and 1 deletions

View File

@ -15,6 +15,7 @@ alias gus='git reset HEAD'
alias gpristine='git reset --hard && git clean -dfx' alias gpristine='git reset --hard && git clean -dfx'
alias gclean='git clean -fd' alias gclean='git clean -fd'
alias gm="git merge" alias gm="git merge"
alias gmv='git mv'
alias g='git' alias g='git'
alias get='git' alias get='git'
alias gst='git status' alias gst='git status'
@ -42,7 +43,7 @@ alias gci='git commit --interactive'
alias gb='git branch' alias gb='git branch'
alias gba='git branch -a' alias gba='git branch -a'
alias gbt='git branch --track' alias gbt='git branch --track'
alias gmv='git branch -m' alias gbm='git branch -m'
alias gcount='git shortlog -sn' alias gcount='git shortlog -sn'
alias gcp='git cherry-pick' alias gcp='git cherry-pick'
alias gco='git checkout' alias gco='git checkout'