From 91dc73d411b0fafef9dfd206b3ee239d4f0e80a7 Mon Sep 17 00:00:00 2001 From: Gaetan Semet Date: Tue, 18 Jun 2013 11:41:17 +0200 Subject: [PATCH] Renamed alias gf to gls (git-ls) Signed-off-by: Gaetan Semet --- plugins/git/git.plugin.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index d15b1bec7..e61b98529 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -83,8 +83,8 @@ 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' compdef _git gpoat=git-push alias gmt='git mergetool --no-prompt'