Browse code

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

Chad Seeger authored on 05/01/2012 at 21:41:27
Showing 1 changed files
... ...
@@ -36,6 +36,8 @@ alias ga='git add'
36 36
 compdef _git ga=git-add
37 37
 alias gm='git merge'
38 38
 compdef _git gm=git-merge
39
+alias grhh='git reset HEAD --hard'
40
+compdef _git grhh=git-reset-head-hard
39 41
 
40 42
 # Git and svn mix
41 43
 alias git-svn-dcommit-push='git svn dcommit && git push github master:svntrunk'