summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2007-11-14 09:54:43 (GMT)
committerJunio C Hamano <gitster@pobox.com>2007-11-14 10:03:29 (GMT)
commitb57321f57b324320bdcf9f453ec4788da166f8f4 (patch)
tree8af9a77bbfd923fad2c2a4dcbdb6e9776c5a758e /t
parent7f55cf451c9e7c35cad2efcd0bb7bbd7c7ae29ac (diff)
downloadgit-b57321f57b324320bdcf9f453ec4788da166f8f4.zip
git-b57321f57b324320bdcf9f453ec4788da166f8f4.tar.gz
git-b57321f57b324320bdcf9f453ec4788da166f8f4.tar.bz2
git-clean: honor core.excludesfile
git-clean did not honor core.excludesfile configuration variable, although some other commands such as git-add and git-status did. Fix this inconsistency. Original report and patch from Shun'ichi Fuji. Rewritten by me and bugs and tests are mine. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-xt/t7300-clean.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/t/t7300-clean.sh b/t/t7300-clean.sh
index eb0847a..0ed4ae2 100755
--- a/t/t7300-clean.sh
+++ b/t/t7300-clean.sh
@@ -177,4 +177,15 @@ test_expect_success 'clean.requireForce and -f' '
'
+test_expect_success 'core.excludesfile' '
+
+ echo excludes >excludes &&
+ echo included >included &&
+ git config core.excludesfile excludes &&
+ output=$(git clean -n excludes included 2>&1) &&
+ expr "$output" : ".*included" >/dev/null &&
+ ! expr "$output" : ".*excludes" >/dev/null
+
+'
+
test_done