This commit is contained in:
Jed Northridge 2015-01-31 13:06:06 +00:00
commit fab1c82d93

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'