Probably a simple question, but I am at a loss here...

In github one can add a deployment key for each repository which only gives access to that single repository.

But for one client I have two projects managed with git on the same server (project A and project B). If I use the public key for project A, github tells me I cant use it as a deployment key for project B and vice versa.

How can I create another public key and setup git to use one key for project A and the other one for project B?

link|improve this question

feedback

1 Answer

up vote 18 down vote accepted

The ssh way to do this would be using ~/.ssh/config, creating a hostname alias and accessing github with different hostnames for both projects. I have no idea whether there is a git config (or git remote) way too.

Host a.github.com
HostName github.com
User git
IdentityFile ~/.ssh/project-a-id_rsa

Host b.github.com
HostName github.com
User git
IdentityFile ~/.ssh/project-b-id_rsa

Then use a.github.com:user/project-a.git or b.github.com:user/project-b.git (or similar) as your repository URLs.

link|improve this answer
Thank you very much, sounds good! Means I would clone my project repositories on the clients server again with the a.github.com/b.github.com urls and before that store the public key as repository key in my github account, right? I´ll give it a try as soon as I can. – Max Mar 6 '11 at 13:56
1  
I think you would not need to clone them again, if you already have them there - you can change the remote repository url with git remote. – Paŭlo Ebermann Mar 6 '11 at 14:07
That worked exactly the way you described. Great! Thanks a lot! – Max Mar 13 '11 at 8:48
This workaround worked for me, thanks. But why does GitHub have this limitation in the first place? Does anyone know? – Garrett Albright Mar 19 at 9:07
feedback

Your Answer

 
or
required, but never shown

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