diff options
author | Junio C Hamano <junkio@cox.net> | 2007-05-21 20:03:53 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-05-21 20:03:53 -0700 |
commit | fbf5df024e9137d446c5a85adeae7e4780365d1b (patch) | |
tree | 69e649ccbf7f457673d2f401956f54b20a7b5f2f /t | |
parent | git-rev-list: Add regexp tuning options (diff) | |
parent | git-cvsserver: fix disabling service via per-method config (diff) | |
download | tgif-fbf5df024e9137d446c5a85adeae7e4780365d1b.tar.xz |
Merge branch 'maint'
* maint:
git-cvsserver: fix disabling service via per-method config
git-status: respect core.excludesFile
SubmittingPatches: mention older C compiler compatibility
git-daemon: don't ignore pid-file write failure
Diffstat (limited to 't')
-rwxr-xr-x | t/t3001-ls-files-others-exclude.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/t/t3001-ls-files-others-exclude.sh b/t/t3001-ls-files-others-exclude.sh index db7a847a5d..fcfcfbba7d 100755 --- a/t/t3001-ls-files-others-exclude.sh +++ b/t/t3001-ls-files-others-exclude.sh @@ -79,4 +79,24 @@ test_expect_success \ >output && git diff expect output' +cat > excludes-file << EOF +*.[1-8] +e* +EOF + +git-config core.excludesFile excludes-file + +git-runstatus | grep "^# " > output + +cat > expect << EOF +# .gitignore +# a.6 +# one/ +# output +# three/ +EOF + +test_expect_success 'git-status honours core.excludesfile' \ + 'diff -u expect output' + test_done |