projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f22cc3f
)
Allow finding things that begin with a dash in 'git grep'
author
Junio C Hamano
<junkio@cox.net>
Mon, 12 Sep 2005 20:24:55 +0000
(13:24 -0700)
committer
Junio C Hamano
<junkio@cox.net>
Mon, 12 Sep 2005 20:24:55 +0000
(13:24 -0700)
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-grep.sh
patch
|
blob
|
history
diff --git
a/git-grep.sh
b/git-grep.sh
index
db2296c
..
c77a2d0
100755
(executable)
--- a/
git-grep.sh
+++ b/
git-grep.sh
@@
-7,6
+7,11
@@
while :; do
flags="$flags $pattern"
shift
;;
+ -e)
+ pattern="$2"
+ shift
+ break
+ ;;
-*)
echo "unknown flag $pattern" >&2
exit 1
@@
-17,4
+22,4
@@
while :; do
esac
done
shift
-git-ls-files -z "$@" | xargs -0 grep $flags "$pattern"
+git-ls-files -z "$@" | xargs -0 grep $flags
-e
"$pattern"