summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChad Seeger <chad@manilla.com>2012-01-09 15:19:19 -0800
committerChad Seeger <chad@manilla.com>2012-01-09 15:19:19 -0800
commitae735335e186447b370d299376970a7ea949b474 (patch)
tree91037cdb16994ddc9755e96e465d33b62b72ae9c
parent9ac98f6ceb77df71c98558a122bc06f8adadf989 (diff)
downloadzsh-ae735335e186447b370d299376970a7ea949b474.tar.gz
zsh-ae735335e186447b370d299376970a7ea949b474.tar.bz2
zsh-ae735335e186447b370d299376970a7ea949b474.zip
Kill the compdef; Introduce 'grh' alias for 'git reset HEAD'
-rw-r--r--plugins/git/git.plugin.zsh2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh
index ec98d4ad5..ae080662f 100644
--- a/plugins/git/git.plugin.zsh
+++ b/plugins/git/git.plugin.zsh
@@ -36,8 +36,8 @@ alias ga='git add'
compdef _git ga=git-add
alias gm='git merge'
compdef _git gm=git-merge
+alias grh='git reset HEAD'
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'