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

A rather unusual situation perhaps, but I want to specify a private SSH-key to use when executing a shell (git) command from the local computer.

Basically like this: git clone git@github.com:TheUser/TheProject.git -key "/home/christoffer/ssh_keys/theuser"

Or even better (in Ruby):

with_key("/home/christoffer/ssh_keys/theuser") do
  sh("git clone git@github.com:TheUser/TheProject.git")
end

I have seen examples of connecting to a remote server with Net::SSH that uses a specified private key, but this is a local command. Is it possible?

Thanks

share|improve this question

7 Answers

up vote 42 down vote accepted

Something like this should work:

ssh-agent (ssh-add /home/christoffer/ssh_keys/theuser; git clone git@github.com:TheUser/TheProject.git)

git will invoke ssh which will find its agent by environment variable; this will, in turn, have the key loaded.

Alternatively, setting HOME may also do the trick, provided you are willing to setup a directory that contains only a .ssh directory as HOME; this may either contain an identity.pub, or a config file setting IdentityFile.

share|improve this answer
But this will add the key permanently as an accepted SSH-key, right? I want to avoid that so that theuser2 can't mess with theuser's projects. It's for a web application so it's not practical to use different OS-users, which would have been the best option. – Christoffer Dec 30 '10 at 19:55
3  
No, when git completes, ssh-agent terminates, and the key is forgotten. – Martin v. Löwis Dec 30 '10 at 19:56
Wonderful! :) Thank you very much. – Christoffer Dec 30 '10 at 19:58
5  
this command does'not work on windows git bash. It says syntax error near unexpected token 'ssh-add' – Mohit Sep 19 '11 at 19:02
27  
Fixed command line (for windows or linux) would be something like: ssh-agent bash -c 'ssh-add sshkey; git clone url' – orip Nov 10 '11 at 0:00
show 2 more comments

None of these solutions worked for me.

Instead, I elaborate on @Martin v. Löwis 's mention of setting a config file for SSH.

SSH will look for the user's ~/.ssh/config file. I have mine setup as:

Host            remote remote.server.com
Hostname        remote.server.com
IdentityFile    ~/.ssh/id_rsa.github

And I add a remote git repository:

git remote add origin git@gitserv:myrepo.git

And then git commands work normally for me.

git push -v origin master

References

[1] Best way to use multiple SSH private keys on one client

share|improve this answer
2  
This is in fact the right answer. – ravloony Mar 5 at 16:58
Aaargh! downvoted by mistake, missed error before lock in timeout - apologies. – brice Apr 26 at 22:33
The "Host" and "Hostname" lines aren't necessary. Only the line with IdentityFile is needed (and can point anywhere - I used this as a temporary fix when I wanted to use git on a machine for one day only. When done, deleted my key and deleted the ~/.ssh/config file) – Adam May 5 at 20:19

Contents of my_git_ssh_wrapper:

#!/bin/bash

ssh -i /path/to/ssh/secret/key $1 $2

Then you can use the key by doing:

GIT_SSH=my_git_ssh_wrapper git clone git@github.com:TheUser/TheProject.git
share|improve this answer

Way better idea to add that host or ip to the .ssh/config file like so:

Host (a space separated list of made up aliases you want to use for the host)
    User git
    Hostname (ip or hostname of git server)
    PreferredAuthentications publickey
    IdentityFile ~/.ssh/id_rsa_(the key you want for this repo)
share|improve this answer
1  
That's useful, but makes you use the repo key for all interaction with that hostname. If there are other repos on the same server that require different keys, using a wrapper and telling git to use it with GIT_SSH is better. – Joe Block Jan 3 at 22:27

You could use GIT_SSH environment variable. But you will need to wrap ssh and options into a shell script.

See man git

share|improve this answer

I went with the GIT_SSH environment variable. Here's my wrapper, similar to that from Joe Block from above, but handles any amount of arguments.

File ~/gitwrap.sh

#!/bin/bash
ssh -i ~/.ssh/gitkey_rsa $@

Then, in my .bashrc, add the following:

export GIT_SSH=~/gitwrap.sh
share|improve this answer
I did set this on .bashrc. But when I login to openshift instance, it does not seems to be calling it. Am I missing something ? – Jigar Shah Feb 11 at 6:48

When you need to connect to github with a normal request (git pull origin master), setting the Host as * in ~/.ssh/config worked for me, any other Host (say, "github" or "gb") wasn't working.

Host *
    User git
    Hostname github.com
    PreferredAuthentications publickey
    IdentityFile ~/.ssh/id_rsa_xxx
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.