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
lab seems to have issues if remote origin is of type http or https rather than ssh in the .git/config file.
lab
origin
http
https
ssh
.git/config
To illustrate:
This works:
[remote "origin"] url = git@gitlab.com:foo/bar.git fetch = +refs/heads/*:refs/remotes/origin/*
This does not work:
[remote "origin"] url = https://gitlab.com/foo/bar.git fetch = +refs/heads/*:refs/remotes/origin/*
The text was updated successfully, but these errors were encountered:
[#12] (internal/git) support parsing remotes using http/s, ssh://, an…
9e9e50c
…d git:// This should resolve most issues with using non scp style ssh urls (e.g. git@gitlab.com:user/repo) with lab
Merge pull request #111 from zaquestion/http_remotes
66a02e3
[#12] (internal/git) support parsing remotes using http/s, ssh://, and git://
Should be fixed in #111, re-open if any new cases come up.
Sorry, something went wrong.
No branches or pull requests
lab
seems to have issues if remoteorigin
is of typehttp
orhttps
rather thanssh
in the.git/config
file.To illustrate:
This works:
This does not work:
The text was updated successfully, but these errors were encountered: