From 76821f506c5f252b9542c1d168e6f30874e5c68d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Cornell=C3=A0?= Date: Sat, 20 Aug 2016 23:53:12 +0200 Subject: [PATCH] Rename `gh` alias (git help) to `ghh` This conflicts with several tools, including NodeGH [1] and scm_breeze [2]. [1] https://github.com/robbyrussell/oh-my-zsh/issues/5313 [2] https://github.com/robbyrussell/oh-my-zsh/issues/5321 Related: #5130 --- plugins/git/git.plugin.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index 66f63d817..ae2a07f80 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -151,7 +151,7 @@ compdef _git ggpush=git-checkout alias ggsup='git branch --set-upstream-to=origin/$(git_current_branch)' alias gpsup='git push --set-upstream origin $(git_current_branch)' -alias gh='git help' +alias ghh='git help' alias gignore='git update-index --assume-unchanged' alias gignored='git ls-files -v | grep "^[[:lower:]]"'