From 33e9308703317e8307e03a82c24566a96919449a Mon Sep 17 00:00:00 2001 From: Gaetan Semet Date: Wed, 11 Sep 2013 15:28:23 +0200 Subject: [PATCH] gf is not git fetch, not git ls (=> gls) Signed-off-by: Gaetan Semet --- plugins/git/git.plugin.zsh | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index 3b3ce2670..f86f11646 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -91,8 +91,6 @@ alias grhh='git reset HEAD --hard' compdef _git grhh=git-reset alias gwc='git whatchanged -p --abbrev-commit --pretty=medium' compdef _git gwc=git-whatchanged -alias gf='git ls-files | grep' -compdef _git gf=git-ls-files alias gls='git ls-files | grep' compdef _git gls=git-ls-files alias gpoat='git push origin --all && git push origin --tags'