[plugins/git] Add gmv and grm

This commit is contained in:
Jed Northridge 2015-01-29 06:53:33 -05:00
commit 070600699c

View file

@ -77,6 +77,10 @@ compdef _git ga=git-add
alias gap='git add --patch'
alias gm='git merge'
compdef _git gm=git-merge
alias gmv='git mv'
compdef _git gmv=git-mv
alias grm='git rm'
compdef _git grm=git-rm
alias grh='git reset HEAD'
alias grhh='git reset HEAD --hard'
alias gclean='git reset --hard && git clean -dfx'