]> git.ipfire.org Git - thirdparty/git.git/commit
grep: allow -E and -n to be turned on by default via configuration
authorJoe Ratterman <jratt0@gmail.com>
Wed, 30 Mar 2011 19:31:05 +0000 (14:31 -0500)
committerJunio C Hamano <gitster@pobox.com>
Wed, 30 Mar 2011 20:17:07 +0000 (13:17 -0700)
commitb22520a37c8472751f2c4b3da9b5bc4e5aa5a0a3
tree2cc115af941794b8d634345098f0d54512f42ccc
parent61e8aaf6215a2983610a770645e6d0a24bafb454
grep: allow -E and -n to be turned on by default via configuration

Add two configration variables grep.extendedRegexp and grep.lineNumbers to
allow the user to skip typing -E and -n on the command line, respectively.

Scripts that are meant to be used by random users and/or in random
repositories now have use -G and/or --no-line-number options as
appropriately to override the settings in the repository or user's
~/.gitconfig settings. Just because the script didn't say "git grep -n" no
longer guarantees that the output from the command will not have line
numbers.

Signed-off-by: Joe Ratterman <jratt0@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/config.txt
Documentation/git-grep.txt
builtin/grep.c
t/t7810-grep.sh