Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-08-14 06:22:29 +0400
committerJunio C Hamano <gitster@pobox.com>2008-08-14 06:22:29 +0400
commita0653d550524a0263d36fde6a8cf98941dd057ab (patch)
treeb42d7ac9fd85f20920d8efd97c472724f544f416 /t/t3700-add.sh
parent8caa3acf3a5f660b6b4c01fe23c05094140795d6 (diff)
parent21926fe885aa6579f7aa0e89fcb6a9064f8aa516 (diff)
Merge branch 'maint'
* maint: t5304-prune: adjust file mtime based on system time rather than file mtime Fix escaping of glob special characters in pathspecs
Diffstat (limited to 't/t3700-add.sh')
-rwxr-xr-xt/t3700-add.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/t/t3700-add.sh b/t/t3700-add.sh
index 7d123d17fc..77a782c9ad 100755
--- a/t/t3700-add.sh
+++ b/t/t3700-add.sh
@@ -222,4 +222,12 @@ test_expect_success 'git add (add.ignore-errors = false)' '
! ( git ls-files foo1 | grep foo1 )
'
+test_expect_success 'git add '\''fo\?bar'\'' ignores foobar' '
+ git reset --hard &&
+ touch fo\?bar foobar &&
+ git add '\''fo\?bar'\'' &&
+ git ls-files fo\?bar | grep -F fo\?bar &&
+ ! ( git ls-files foobar | grep foobar )
+'
+
test_done