From 12795333599c5ddd3459be7b59bcf61aa033af40 Mon Sep 17 00:00:00 2001 From: Gaetan Semet Date: Thu, 30 Jan 2014 15:43:43 +0100 Subject: [PATCH] fix gclean (*.BASE.*) Signed-off-by: Gaetan Semet --- 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 df4211538..7796275e5 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -251,7 +251,7 @@ compdef _git gke='gitk' # Clean # Remove all .orig, .BASE.*, .REMOTE.*, .LOCAL.*, *.BACKUP files -alias gclean=" find . -name '*.orig' -or -name '*.REMOTE.*' -or -name '*.LOCAL.*' -or -name '*.BACKUP.*' | xargs -r rm -v" +alias gclean=" find . -name '*.orig' -or -name '*.REMOTE.*' -or -name '*.LOCAL.*' -or -name '*.BACKUP.*' -or -name '*.BASE.*' | xargs -r rm -v" # Edit global Git configuration files alias gitconfig="vim ~/.gitconfig"