Work around MinGW mangling of "host:/path"
commit60096146d67d408837b80c6b720bee722f35cf72
authorJohannes Schindelin <johannes.schindelin@gmx.de>
Mon, 6 Aug 2007 15:49:51 +0000 (6 16:49 +0100)
committerJohannes Schindelin <johannes.schindelin@gmx.de>
Mon, 6 Aug 2007 22:20:15 +0000 (6 23:20 +0100)
tree11f3161ce83720296418bd9ee40a8eae2d9d56ef
parent13e33743145fced9306fc7594bc84514fbd5883c
Work around MinGW mangling of "host:/path"

The common way to specify an ssh remote is to say "host:/path",
but MinGW decides for us that this is probably a path list, and
path lists are separated by a semicolon on Windows.  So before
passing this to git-peek-remote.exe, it transforms that to
"host;C:/msysGit/path".  Avoid that by expanding it to
"ssh://host/path", but take extra care not to convert absolute
paths to that syntax!

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
git-parse-remote.sh [changed mode: 0755->0644]