We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f717d69 + b0088db commit 9259cfaCopy full SHA for 9259cfa
t/t5580-clone-push-unc.sh renamed to t/t5580-unc-paths.sh
@@ -49,11 +49,23 @@ test_expect_success clone '
49
git clone "file://$UNCPATH" clone
50
'
51
52
+test_expect_success 'clone without file://' '
53
+ git clone "$UNCPATH" clone-without-file
54
+'
55
+
56
test_expect_success 'clone with backslashed path' '
57
BACKSLASHED="$(echo "$UNCPATH" | tr / \\\\)" &&
58
git clone "$BACKSLASHED" backslashed
59
60
61
+test_expect_success fetch '
62
+ git init to-fetch &&
63
+ (
64
+ cd to-fetch &&
65
+ git fetch "$UNCPATH" master
66
+ )
67
68
69
test_expect_success push '
70
(
71
cd clone &&
0 commit comments