You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A requirement of the form git@server:repo.git gets translated into ssh://server/repo.git, dropping the git@ username component of the url. This then fails cloning if the server requires that git username (as GitHub does).
The issue is this line (specifically self.url[4:]) that slices out the username when constructing the ssh:// url. You can bypass this errant special casing with an explicit ssh:// schema (e.g. ssh://git@server/repo.git).
The text was updated successfully, but these errors were encountered:
A requirement of the form
git@server:repo.git
gets translated intossh://server/repo.git
, dropping thegit@
username component of the url. This then fails cloning if the server requires thatgit
username (as GitHub does).The issue is this line (specifically
self.url[4:]
) that slices out the username when constructing thessh://
url. You can bypass this errant special casing with an explicitssh://
schema (e.g.ssh://git@server/repo.git
).The text was updated successfully, but these errors were encountered: