Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

On the GitHub site there is a link...

https://help.github.com/articles/generating-ssh-keys

... and it states...

If you have decided not to use the recommended HTTPS method, we can use SSH keys to establish a secure connection between your computer and GitHub. The steps below will walk you through generating an SSH key and then adding the public key to your GitHub account.

Why is HTTPS the recommended method? Is there some sort of security flaw in the SSH method or is it slower? I created an SSH key, so would that mitigate any security concerns?

share|improve this question
2  
Less configuration means easier, perhaps. Besides, some inferior operating systems don't even have SSH clients installed by default. – katspaugh Jun 14 '12 at 21:40
2  
SSH URLs used to be the default ones, but now HTTPS ones are. – larsmans Jun 14 '12 at 21:40
1  
Perhaps they have a TLS-accelerator card that can reduce CPU load if their users are using HTTPS? – sarnold Jun 14 '12 at 21:41
I wanted to put a joke answer that it was because of this: github.com/blog/… but I figured I would go the gentleman route. – Adam Gent Oct 1 '12 at 14:48
@AdamGent, and then you figured the gentleman route would be to put a joke comment about it? – Eliran Malka Mar 27 at 10:39
show 1 more comment

2 Answers

up vote 12 down vote accepted

Github recommends https so the credential.helper can cache your password.

https://help.github.com/articles/set-up-git

Good to know: The credential helper only works when you clone an HTTPS repo URL. If you use the SSH repo URL instead, SSH keys are used for authentication. While we do not recommend it, if you wish to use this method, check out this guide for help generating and using an SSH key.

share|improve this answer
4  
Ah, so they recommend HTTPS simply so they don't have to document ssh-agent? Fair enough. Thanks! – sarnold Jun 14 '12 at 21:48
4  
@sarnold It probably has more to do with the volume of questions related to ssh-agent and public key management, and the number of corporate firewalls that allow outbound HTTP/HTTPS but not SSH. – CodeGnome Jun 14 '12 at 21:55
1  
I think that https makes it easier for people to get started since you don't have to do the whole generate/copy/paste ssh key business. Also it could be viewed as more secure from Github's perspective since an attacker who got your ssh password (or found a computer terminal you left open) would still have to know your Github password to push anything. – kristi Jun 15 '12 at 18:52
1  
@kristi If the attacker finds that terminal before the password cache expires, wouldn't he still be able to push even if he don't know the password? The question is about the same if you use ssh-agent, the obvious difference being that you have to enter the password of the ssh key instead of your github password (and there seems no obvious setting for cache expiration). The idea of entering the github password instead of ssh key password seems a step backwards, albeit a small one since the power the two keys give you are about the same AFAIK. – Halil Özgür Jun 16 '12 at 11:05
1  
I think it's almost entirely about reducing the volume of support queries they get. I suppose you could also argue that since you have to enter your password over HTTPS anyway to access the website, you can't be increasing security by using a different authentication mechanism (SSH keys), but feasibly you're increasing the attack surface which might decrease security. Still, both HTTPS and SSH should be adequately secure if used properly. – Cartroo Jan 16 at 12:31
show 2 more comments

Also see: the official answer from help.github.com

Apparently the main reason for favoring HTTPS URLs is that SSH URL's won't work with a public repo if you don't have write access to that repo.

The use of SSH URLs is encouraged for deployment to production servers, however - presumably the context here is services like Heroku.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.