Work around MinGW mangling of "host:/path"
commitd8e43b074d29c526194ec987c1cafdeb80c35048
authorJohannes Schindelin <johannes.schindelin@gmx.de>
Sun, 5 Aug 2007 04:53:58 +0000 (5 05:53 +0100)
committerJohannes Schindelin <johannes.schindelin@gmx.de>
Sun, 5 Aug 2007 04:53:58 +0000 (5 05:53 +0100)
treec7dc52e0b4eb2b7942d1cb675248f8d0bd7dbf99
parent3d5e914c5700c6a6ac9f610c4e2d70bc420e29af
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".

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
git/git-parse-remote.sh