We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Calling Clone with an SSH URL like: repo, err := Clone("[email protected]:owner/repo.git", "/some/path", opts)
repo, err := Clone("[email protected]:owner/repo.git", "/some/path", opts)
Returns an error from net/url like: parse \"[email protected]:owner/repo.git\": first path segment in URL cannot contain colon.
parse \"[email protected]:owner/repo.git\": first path segment in URL cannot contain colon
Is calling Clone with an SSH URL not supported?
go1.17.6.linux-amd6 libgit2 version 1.3 git2go v33.0.6
The text was updated successfully, but these errors were encountered:
Cloning with a ssh remote like ssh://[email protected]/owner/repo.git works.
ssh://[email protected]/owner/repo.git
Sorry, something went wrong.
No branches or pull requests
Calling Clone with an SSH URL like:
repo, err := Clone("[email protected]:owner/repo.git", "/some/path", opts)
Returns an error from net/url like:
parse \"[email protected]:owner/repo.git\": first path segment in URL cannot contain colon
.Is calling Clone with an SSH URL not supported?
go1.17.6.linux-amd6
libgit2 version 1.3
git2go v33.0.6
The text was updated successfully, but these errors were encountered: