Is it possible to have multiple public key files? If so, is there someone that can provide an instructional link or a quick how-to? I googled, but can't find what I'm looking for, so now I'm thinking I can't do it?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

git just uses SSH, so the trick here is to configure SSH into doing what you want.

As it happens, this is trivial by setting up an ssh config file, as described here: http://lookherefirst.wordpress.com/2007/12/17/a-simple-ssh-config-file/

You'll likely want to set up a different "Host" for each public/private key pair you want to use, and therefore, your git repo will have an upstream for each of those. (It doesn't matter that the different "Host" entries resolve to the same "Hostname".)

link|improve this answer
feedback

Of course you can generate multiple key pairs (e.g. for different machines).

Just have a look at the official github help page. You can manage your keys under "Account Settings"

link|improve this answer
1  
igorw said the same thing, but I don't think you can specify in, e.g., git push and git pull which keyfile to use. (The multiple keys thing in GitHub is more for pushing/pulling from multiple machines.) – mipadi Mar 23 '11 at 21:43
feedback

Your Answer

 
or
required, but never shown

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