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 6365058 + bfe2bbb commit fc25a19Copy full SHA for fc25a19
t/t5580-clone-push-unc.sh renamed to t/t5580-unc-paths.sh
@@ -40,11 +40,23 @@ test_expect_success clone '
40
git clone "file://$UNCPATH" clone
41
'
42
43
+test_expect_success 'clone without file://' '
44
+ git clone "$UNCPATH" clone-without-file
45
+'
46
+
47
test_expect_success 'clone with backslashed path' '
48
BACKSLASHED="$(echo "$UNCPATH" | tr / \\\\)" &&
49
git clone "$BACKSLASHED" backslashed
50
51
52
+test_expect_success fetch '
53
+ git init to-fetch &&
54
+ (
55
+ cd to-fetch &&
56
+ git fetch "$UNCPATH" master
57
+ )
58
59
60
test_expect_success push '
61
(
62
cd clone &&
0 commit comments