1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-24 17:00:47 +00:00

Git Plugin: adds 'grhh' alias for 'git reset HEAD --hard'

This commit is contained in:
Chad Seeger 2012-01-05 13:41:27 -08:00
parent 8c45b73918
commit 9ac98f6ceb

View file

@ -36,6 +36,8 @@ alias ga='git add'
compdef _git ga=git-add
alias gm='git merge'
compdef _git gm=git-merge
alias grhh='git reset HEAD --hard'
compdef _git grhh=git-reset-head-hard
# Git and svn mix
alias git-svn-dcommit-push='git svn dcommit && git push github master:svntrunk'