summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: a3c91e0)
raw | patch | inline | side by side (parent: a3c91e0)
author | Alex Riesen <raa.lkml@gmail.com> | |
Tue, 3 Jun 2008 22:16:26 +0000 (00:16 +0200) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Wed, 4 Jun 2008 05:12:08 +0000 (22:12 -0700) |
The double slashes "//" result from url./$TRASH/. expansion and the
current directory, which even in cygwin contains "/" as first
character. In cygwin such strings have special meaning: UNC path.
Accessing an UNC path built for test purpose usually fails.
Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
current directory, which even in cygwin contains "/" as first
character. In cygwin such strings have special meaning: UNC path.
Accessing an UNC path built for test purpose usually fails.
Signed-off-by: Alex Riesen <raa.lkml@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t5516-fetch-push.sh | patch | blob | history |
diff --git a/t/t5516-fetch-push.sh b/t/t5516-fetch-push.sh
index c5c59335f36d0d8f6a26ee606fd605e74e2d1e33..6805032a05cba00536f8d0621873741773a49f92 100755 (executable)
--- a/t/t5516-fetch-push.sh
+++ b/t/t5516-fetch-push.sh
test_expect_success 'push with insteadOf' '
mk_empty &&
TRASH="$(pwd)/" &&
- git config "url./$TRASH/.insteadOf" trash/ &&
+ git config "url.$TRASH.insteadOf" trash/ &&
git push trash/testrepo refs/heads/master:refs/remotes/origin/master &&
(
cd testrepo &&