summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2017-07-31 13:51:04 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2017-07-31 13:51:04 -0700
commit49f1e2eb1b9a6c878783e30d48436a619773fe56 (patch)
tree34fa9761842eeab8a41d81de8f6a0042b38d8693 /t
parentMerge branch 'rs/apply-avoid-over-reading' into maint (diff)
parentcygwin: allow pushing to UNC paths (diff)
downloadtgif-49f1e2eb1b9a6c878783e30d48436a619773fe56.tar.xz
Merge branch 'tb/push-to-cygwin-unc-path' into maint
On Cygwin, similar to Windows, "git push //server/share/repository" ought to mean a repository on a network share that can be accessed locally, but this did not work correctly due to stripping the double slashes at the beginning. This may need to be heavily tested before it gets unleashed to the wild, as the change is at a fairly low-level code and would affect not just the code to decide if the push destination is local. There may be unexpected fallouts in the path normalization. * tb/push-to-cygwin-unc-path: cygwin: allow pushing to UNC paths
Diffstat (limited to 't')
-rwxr-xr-xt/t0060-path-utils.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/t/t0060-path-utils.sh b/t/t0060-path-utils.sh
index 444b5a4df8..7ea2bb515b 100755
--- a/t/t0060-path-utils.sh
+++ b/t/t0060-path-utils.sh
@@ -70,6 +70,8 @@ ancestor() {
case $(uname -s) in
*MINGW*)
;;
+*CYGWIN*)
+ ;;
*)
test_set_prereq POSIX
;;