til

#TIL : Running git command using another ssh key

I learned on 2018-06-26 about git, github

Sometimes you want to use another private key to authorize to remote repository.

Just add an environment variable before the command you wanna run : GIT_SSH_COMMAND='ssh -i [your-private-key]

Example :

$ GIT_SSH_COMMAND='ssh -i ~/keys/key1' git pull

Enjoyed this?

Leave a kudo — it means a lot.

0