Using git remotely with ssh keys
daniel Thu, 02/14/2013 - 11:26pm
I was getting an error when trying to use git on a remote machine with an ssh key.
i.e. I logged onto another box, did "git push" and it failed with an ssh key error. Here's how I got around it:
$ ssh-agent /bin/bash
$ ssh-add ~/.ssh/id_rsa
From: vhallac on Stackoverflow
- Log in to post comments