Trim leading colon from ssh repository path

This commit is contained in:
Isaac Kearse 2013-09-08 14:11:08 +12:00
parent ef6389ad50
commit fbabe855ad

View File

@ -51,6 +51,7 @@ static int gen_proto(git_buf *request, const char *cmd, const char *url)
repo = strchr(url, '/');
} else {
repo = strchr(url, ':');
repo++;
}
if (!repo) {