diff options
author | Junio C Hamano <junkio@cox.net> | 2007-05-21 18:42:35 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-05-21 18:42:35 -0700 |
commit | f95c6780c244e90abf87222126ad3b4bb18a504e (patch) | |
tree | ede18dbb8b33e330f3837209a489f7737df2dc25 /t | |
parent | Merge branch 'maint-1.5.1' into maint (diff) | |
parent | git-status: respect core.excludesFile (diff) | |
download | tgif-f95c6780c244e90abf87222126ad3b4bb18a504e.tar.xz |
Merge branch 'maint-1.5.1' into maint
* maint-1.5.1:
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 |