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?
|
feedback
|
|
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".) | |||
|
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" | |||||
feedback
|