From ddf9b8be1551562805cdeef930f32cc9f5b96e6f Mon Sep 17 00:00:00 2001 From: Gaetan Semet Date: Tue, 11 Jun 2013 11:34:40 +0200 Subject: [PATCH] new git alias : gfa Signed-off-by: Gaetan Semet --- plugins/git/git.plugin.zsh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index 188c133eb..360c76523 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -11,6 +11,8 @@ alias gup='git pull --rebase' compdef _git gup=git-fetch alias gp='git push' compdef _git gp=git-push +alias gfa='git fetch --all' +compdef _git gfa='git fetch --all' alias gd='git diff' gdv() { git diff -w "$@" | view - } compdef _git gdv=git-diff @@ -79,7 +81,7 @@ alias gga='git gui citool --amend' alias gk='gitk --all --branches' alias gss='git stash show --text' alias gitk-entier-history='gitk --all $(git log -g --pretty=format:%h)' # show complete history, with dangling commits -# Note: if the commit has been cleaned my 'git gc', the dangling commits older than 2 weeks may already been completely deleted +# Note: if the commit has been cleaned my 'git gc', the dangling commits older than 2 weeks may have been deleted # # Will cd into the top of the current repository