I really want to use GitHub, but my company has everything locked down. Now, I can only use Tortoise SVN through the HTTP protocol. Can I use GitHub the same way? If so, how?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I think you’ve always been able to clone github repositories over HTTP, but with the restriction that you couldn’t push back to them. However, github have recently introduced the Smart HTTP transport, so now you can also push over HTTPS. This should work fine from behind any firewall. There’s more on the Smart HTTP support in this blog post:
To give a short summary – if you click the HTTP button on the “Source” tab of a repository, it’ll give you a URL like:
If you clone with that URL, it’ll prompt you for your github password whenever you need to communicate with the server (e.g. with
git clone,git fetch,git push, etc.) However, you can also clone using a URL like:… and you won’t need to re-enter your password. (As that blog post mentions, make sure you’ve got
https://at the start of the URL, and be aware that this means that your github password will be stored in plaintext in your git config, so don’t let anyone copy your.gitdirectory!)