I'm trying to setup a git client on linux. I uploaded my private key to the machine, and I understand that I should put it in ~/.ssh, but I don't have access to that folder.

How can I tell git to look for the private key somewhere else?

link|improve this question

71% accept rate
feedback

3 Answers

up vote 5 down vote accepted

One option is to use ssh-agent and provide a file name to ssh-add.

For example:

$ ssh-agent /bin/bash
$ ssh-add ~/mykeys/id_rsa
link|improve this answer
feedback

create a file inside yout ~/.ssh folder named config

you can use some command like

$ nano ~/.ssh/config

the content of the file should have the location of your key based on each host name. for example:

Host github.com
 IdentityFile ~/myPublicKeyFolder/myGitHubFile
Host heroku.com
 IdentityFile ~/myPublicKeyFolder/myHerokuFile

Then when git tries to acces each host it will follow the rules inside the config file based on the git host

link|improve this answer
feedback

I would have said put the file name in ~/.ssh/config, but you likely would not have access to this file, too.

You can give ssh the private key to use with the -i keyfile option.

Now how to say git which options to pass to ssh?

The GitTips page says create a wrapper script and point to it with the GIT_SSH environment variable.

It looks like you also can use the git configuration core.gitProxy, but I did not find a good example and some mailing list message suggests it is only for the git: protocol.

link|improve this answer
Both links seem to be duds now. – Kev Mar 10 at 17:09
@Kev Thanks for the note - I found the new locations. How do I hate resources who don't provide persistent addresses ... – Paŭlo Ebermann Mar 10 at 19:21
feedback

Your Answer

 
or
required, but never shown

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