X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=git-grep.sh;h=44c16130bd93fea8b6f172f1614115801f8df2d9;hb=ee72aeaf009417156a3599b0eb69da3f7023ca07;hp=db2296c330c0679c11d308441603171673cac763;hpb=f22cc3fcbfe7755154a3a151215abd39162e2e85;p=git.git diff --git a/git-grep.sh b/git-grep.sh index db2296c3..44c16130 100755 --- a/git-grep.sh +++ b/git-grep.sh @@ -1,20 +1,47 @@ #!/bin/sh -flags= -while :; do - pattern="$1" - case "$pattern" in - -i|-I|-a|-E|-H|-h|-l) - flags="$flags $pattern" - shift - ;; - -*) - echo "unknown flag $pattern" >&2 - exit 1 - ;; - *) - break - ;; - esac +# +# Copyright (c) Linus Torvalds, 2005 +# + +pattern= +flags=() +git_flags=() +while : ; do + case "$1" in + --cached|--deleted|--others|--killed|\ + --ignored|--exclude=*|\ + --exclude-from=*|\--exclude-per-directory=*) + git_flags=("${git_flags[@]}" "$1") + ;; + -e) + pattern="$2" + shift + ;; + -A|-B|-C|-D|-d|-f|-m) + flags=("${flags[@]}" "$1" "$2") + shift + ;; + --) + # The rest are git-ls-files paths (or flags) + shift + break + ;; + -*) + flags=("${flags[@]}" "$1") + ;; + *) + if [ -z "$pattern" ]; then + pattern="$1" + shift + fi + break + ;; + esac + shift done -shift -git-ls-files -z "$@" | xargs -0 grep $flags "$pattern" +[ "$pattern" ] || { + echo >&2 "usage: 'git grep [pathspec*]'" + exit 1 +} +git-ls-files -z "${git_flags[@]}" "$@" | + xargs -0 grep "${flags[@]}" -e "$pattern"