summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-10-13 19:03:18 -0700
committerJunio C Hamano <gitster@pobox.com>2011-10-13 19:03:18 -0700
commit6fdab32e14e2bca05ae6471502bcdfd35b381564 (patch)
tree8c7848ed8e747b74b709f49ba6dd0c2fbf274238 /t
parent08ec3b5e4d56f62e8585095a7a4bf21721498ef3 (diff)
parenta9e643668aa932d93528fffa573a13a28eb54556 (diff)
downloadgit-6fdab32e14e2bca05ae6471502bcdfd35b381564.tar.gz
Merge branch 'bw/grep-no-index-no-exclude'
* bw/grep-no-index-no-exclude: grep --no-index: don't use git standard exclusions grep: do not use --index in the short usage output
Diffstat (limited to 't')
-rwxr-xr-xt/t7810-grep.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t7810-grep.sh b/t/t7810-grep.sh
index 0d600163c8..4a05e79cae 100755
--- a/t/t7810-grep.sh
+++ b/t/t7810-grep.sh
@@ -554,7 +554,6 @@ test_expect_success 'outside of git repository' '
mkdir -p non/git/sub &&
echo hello >non/git/file1 &&
echo world >non/git/sub/file2 &&
- echo ".*o*" >non/git/.gitignore &&
{
echo file1:hello &&
echo sub/file2:world
@@ -581,6 +580,7 @@ test_expect_success 'inside git repository but with --no-index' '
echo world >is/git/sub/file2 &&
echo ".*o*" >is/git/.gitignore &&
{
+ echo ".gitignore:.*o*" &&
echo file1:hello &&
echo sub/file2:world
} >is/expect.full &&