-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
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
Support for raw git URLs #167
Comments
We'd need a way to identify if that's a raw Git URL. Two ways come to mind:
The first option is easier, probably more reliable and more performant (in option 2 all wrong contexts might need to undergo HTTP requests to some wrong URL). |
For github, gitlab and so on we can tell by the first segment what context parser to use. So we could possibly use the raw git for everything else. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Wouldn't this effectively make it possible to use private GitHub repos in the free plan? |
Hi there! Any news on this issue? I can contribute or help in any other way in the development or testing |
This seems like a great initiative. It would make some of the things we want to do with Drupal contribution so much easier. AFAICT, the difference between a raw git URL and an explicit integration is that you can't do prebuild with a raw git URL and you have to either be expecting just to pull (which might be OK for many things) but if you wanted to push you'd have to have auth of one type or another. |
it would be great if Gitpod could handle URLs for schemes
http://
andhttps://
in exactly the same format as it is understood bygit clone <git-url>
.We should evaluate if we can make
https://gitpod.io/#<git-url>
work or if this causes ambiguities with GitHub-URLs.URLs that require password authentication or an installed SSH-key should be handled in separate issues.
The text was updated successfully, but these errors were encountered: