new alias: grH

Signed-off-by: Gaetan Semet <gaetan@xeberon.net>
This commit is contained in:
Gaetan Semet 2014-10-13 11:40:41 +02:00
commit ca8628d907

View file

@ -189,6 +189,9 @@ compdef _git glola=git-log
# Soft Reset to HEAD
alias grh='git reset HEAD'
compdef _git grh=git-reset
# Hard Reset
alias grH='git reset --hard'
compdef _git grH=git-reset
# Hard reset to HEAD
alias grhh='git reset HEAD --hard'
compdef _git grhh=git-reset