Re: [PATCH v3 1/1] cygwin: Allow pushing to UNC paths

2017-07-05 Thread Junio C Hamano
tbo...@web.de writes: > From: Torsten Bögershausen > > cygwin can use an UNC path like //server/share/repo > $ cd //server/share/dir > $ mkdir test > $ cd test > $ git init --bare > > However, when we try to push from a local Git repository to this repo, > there is a problem: Git converts

[PATCH v3 1/1] cygwin: Allow pushing to UNC paths

2017-07-03 Thread tboegi
From: Torsten Bögershausen cygwin can use an UNC path like //server/share/repo $ cd //server/share/dir $ mkdir test $ cd test $ git init --bare However, when we try to push from a local Git repository to this repo, there is a problem: Git converts the leading "//" into a single "/". As