From 5ba606f60d70e5bee9b564656408358c28e097f2 Mon Sep 17 00:00:00 2001 From: Yan Pritzker Date: Fri, 16 Nov 2012 12:04:34 -0600 Subject: [PATCH] Fix 'ga *foo*' by not globbing git --- zsh/noglob.zsh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 zsh/noglob.zsh diff --git a/zsh/noglob.zsh b/zsh/noglob.zsh new file mode 100644 index 0000000..ede67c9 --- /dev/null +++ b/zsh/noglob.zsh @@ -0,0 +1,4 @@ +# Don't try to glob with zsh so you can do +# stuff like ga *foo* and correctly have +# git add the right stuff +alias git='noglob git'