ssh has the -i option to tell which private key file to use when authenticating:
-i identity_fileSelects a file from which the identity (private key) for RSA or DSA authentication is read. The default is
~/.ssh/identityfor protocol version 1, and~/.ssh/id_rsaand~/.ssh/id_dsafor protocol version 2. Identity files may also be specified on a per-host basis in the configuration file. It is possible to have multiple-ioptions (and multiple identities specified in configuration files).
Is there a similar way to tell git which private key file to use on a system with multiple private keys in the ~/.ssh directory?
25 Answers
In ~/.ssh/config, add:
Host github.com HostName github.com IdentityFile ~/.ssh/id_rsa_githubIf the config file is new, you might need to do chmod 600 ~/.ssh/config
Now you can do git clone :{ORG_NAME}/{REPO_NAME}.git
- Where
{ORG_NAME}is your GitHub user account (or organization account)'s GitHub URI name.- Note that there is a colon
:aftergithub.cominstead of the slash/- as this is not a URI.
- Note that there is a colon
- And
{REPO_NAME}is your GitHub repo's URI name - For example, for the Linux kernel this would be
git clone :torvalds/linux.git).
NOTE: On Linux and macOS, verify that the permissions on your IdentityFile are 400. SSH will reject, in a not clearly explicit manner, SSH keys that are too readable. It will just look like a credential rejection. The solution, in this case, is:
chmod 400 ~/.ssh/id_rsa_github 16 Environment variable GIT_SSH_COMMAND
From Git version 2.3.0, you can use the environment variable GIT_SSH_COMMAND like this:
GIT_SSH_COMMAND="ssh -i ~/.ssh/id_rsa_example" git clone exampleNote that -i can sometimes be overridden by your config file, in which case, you should give SSH an empty config file, like this:
GIT_SSH_COMMAND="ssh -i ~/.ssh/id_rsa_example -F /dev/null" git clone exampleConfiguration core.sshCommand
Since Git version 2.10.0, you can configure this per repo or globally, so you don't have to set the environment variable any more, once you have already cloned the repo:
git config core.sshCommand "ssh -i ~/.ssh/id_rsa_example -F /dev/null"
git pull
git push 20 There is no direct way to tell git which private key to use, because it relies on ssh for repository authentication. However, there are still a few ways to achieve your goal:
Option 1: ssh-agent
You can use ssh-agent to temporarily authorize your private key.
For example:
$ ssh-agent sh -c 'ssh-add ~/.ssh/id_rsa; git fetch user@host'Option 2: GIT_SSH_COMMAND
Pass the ssh arguments by using the GIT_SSH_COMMAND environment variable
(Git 2.3.0+).
For example:
$ GIT_SSH_COMMAND='ssh -i ~/.ssh/id_rsa -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no' \ git clone user@hostYou can type this all on one line — ignore $ and leave out the \.
Option 3: GIT_SSH
Pass the ssh arguments by using the GIT_SSH environment variable to specify alternate ssh binary.
For example:
$ echo 'ssh -i ~/.ssh/id_rsa -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no $*' > ssh
$ chmod +x ssh
$ GIT_TRACE=1 GIT_SSH='./ssh' git clone user@hostNote: The above lines are shell (terminal) command lines which you should paste into your terminal. They will create a file named ssh, make it executable, and (indirectly) execute it.
Note: GIT_SSH is available since v0.99.4 (2005).
Option 4: ~/.ssh/config
Use the ~/.ssh/config file as suggested in other answers in order to specify the location of your private key, e.g.
Host github.com User git Hostname github.com IdentityFile ~/.ssh/id_rsa 9 Use custom host config in ~/.ssh/config, like this:
Host gitlab-as-thuc HostName github.com User git IdentityFile ~/.ssh/id_rsa.thuc IdentitiesOnly yesthen use your custom hostname like this:
git remote add thuc git@gitlab-as-thuc:your-repo.git 12 If you need to connect to the same host with different keys then you can achieve it by:
- Configure the
~/.ssh/configwith different Hosts but same HostNames. - Clone your repo using the appropriate host.
Example:
~/.ssh/config
Host work HostName bitbucket.org IdentityFile ~/.ssh/id_rsa_work User git Host personal HostName bitbucket.org IdentityFile ~/.ssh/id_rsa_personal User git
Then instead cloning your repos like:
git clone git@bitbucket.org:username/my-work-project.git git clone git@bitbucket.org:username/my-personal-project.git
you must do
git clone git@work:username/my-work-project.git git clone git@personal:username/my-personal-project.git8
Write a script that calls ssh with the arguments you want, and put the filename of the script in $GIT_SSH. Or just put your configuration in ~/.ssh/config.
If you do not want to have to specify environment variables every time you run git, do not want another wrapper script, do not/can not run ssh-agent(1), nor want to download another package just for this, use the git-remote-ext(1) external transport:
$ git clone 'ext::ssh -i $HOME/.ssh/alternate_id git.example.com %S /path/to/repository.git'
Cloning into 'repository'
(...)
$ cd repository
$ git remote -v
origin ext::ssh -i $HOME/.ssh/alternate_id git.example.com %S /path/to/repository.git (fetch)
origin ext::ssh -i $HOME/.ssh/alternate_id git.example.com %S /path/to/repository.git (push)I consider this solution superior because:
- It is repository/remote specific
- Avoid wrapper script bloat
- Do not need the SSH agent -- useful if you want unattended clones/push/pulls (e.g. in cron)
- Definitely, no external tool needed
After my struggle with $GIT_SSH I would like to share what worked for me.
Through my examples I will assume you have your private key located at/home/user/.ssh/jenkins
Error to avoid: GIT_SSH value includes options
$ export GIT_SSH="ssh -i /home/user/.ssh/jenkins"or whatever similar will fails, as git will try to execute the value as a file. For that reason, you have to create a script.
Working example of $GIT_SSH script /home/user/gssh.sh
The script will be invoked as follows:
$ $GIT_SSH [username@]host [-p <port>] <command>Sample script working could look like:
#!/bin/sh
ssh -i /home/user/.ssh/jenkins $*Note the $* at the end, it is important part of it.
Even safer alternative, which would prevent any possible conflict with anything in your default config file (plus explicitly mentioning the port to use) would be:
#!/bin/sh
ssh -i /home/user/.ssh/jenkins -F /dev/null -p 22 $*Assuming the script is in /home/user/gssh.sh, you shall then:
$ export GIT_SSH=/home/user/gssh.shand all shall work.
4So I set the GIT_SSH env variable to $HOME/bin/git-ssh.
In order to support having my repo configuration dictate which ssh identity to use, my ~/bin/git-ssh file is this:
#!/bin/sh
ssh -i $(git config --get ssh.identity) -F /dev/null -p 22 $*Then I have a global git config setting:
$ git config --global ssh.identity ~/.ssh/default_id_rsaAnd within any git repository I can just set a local ssh.identity git config value:
$ git config --local ssh.identity ~/.ssh/any_other_id_rsaVoila!
If you can have a different email address for each identity, it gets even simpler, because you can just name your keys after your email addresses and then have the git config's user.email drive the key selection in a ~/bin/git-ssh like this:
#!/bin/sh
ssh -i $HOME/.ssh/$(git config --get user.email) -F /dev/null -p 22 $* This is my setup for multiple accounts, each using separate rsa key. It doesn't matter whether it's github, bitbucket, or whatever; this setup is not touching ssh client config, neither it uses hosts as selectors for configuration. It uses directory structure instead, and per-dir-subtree configurations.
$HOME/.gitconfig
[user] name = My Public Account Name email =
[core] sshCommand = "ssh -i ~/.ssh/my_public_account_id_rsa"
# public github user - IDEA
[includeIf "gitdir:~/idea/"] path = ~/idea/.gitconfig
# org-1 user
[includeIf "gitdir:~/idea/org-1/"] path = ~/idea/org-1/.gitconfig
# org-2 user
[includeIf "gitdir:~/idea/org-2/"] path = ~/idea/org-2/.gitconfig
# public github user - ruby
[includeIf "gitdir:~/rubymine/"] path = ~/rubymine/.gitconfig
# org-1 user
[includeIf "gitdir:~/rubymine/org-1/"] path = ~/rubymine/org-1/.gitconfigAnd if I need to override key and user details for some projects, then I keep them in the same dir. And in that dir I create a ".gitconfig" file, like:
$HOME/idea/org-1/.gitconfig
[user] name = My Org-1 Account Name email =
[core] sshCommand = "ssh -i ~/.ssh/my_org1_account_id_rsa"Whenever I run any git command in ~/idea/org-1 directory or its sub-dirs, then it picks up my org-1 specific config and uses my_org1_account_id_rsa for ssh. And another name/email also for commits, not only rsa key.
This is hierarchical configuration, i.e. configurations are evaluated from more generic to more specific one. This is achieved by ordering "includeIf" clauses in your $HOME/.gitconfig and having trailing slash in glob patterns, which results in adding ** at the end. It's described nicely in documentation gitconfig includeIf docs. So keep in mind that order matters, and glob patterns matter.
I had a client that needed a separate github account. So I needed to use a separate key just for this one project.
My solution was to add this to my .zshrc / .bashrc:
alias infogit="GIT_SSH_COMMAND=\"ssh -i ~/.ssh/id_specialkey\" git $@"Whenever I want to use git for that project I replace "infogit" with git:
infogit commit -am "Some message" && infogit pushFor me, it's easier to remember.
You can just use ssh-ident instead of creating your own wrapper.
You can read more at:
It loads ssh keys on demand when first needed, once, even with multiple login sessions, xterms or NFS shared homes.
With a tiny config file, it can automatically load different keys and keep them separated in different agents (for agent forwarding) depending on what you need to do.
Generally, you want to use ~/.ssh/config for this. Simply pair server addresses with the keys you want to use for them as follows:
Host github.com IdentityFile ~/.ssh/id_rsa.github
Host heroku.com IdentityFile ~/.ssh/id_rsa.heroku
Host * IdentityFile ~/.ssh/id_rsaHost * denotes any server, so I use it to set ~/.ssh/id_rsa as the default key to use.
I build on @shellholic and this SO thread with a few teaks. I use GitHub as an example and assume that you have a private key in ~/.ssh/github (otherwise, see this SO thread) and that you added the public key to your GitHub profile (otherwise see GitHub's help).
If needed, create a new SSH config file at ~/.ssh/config and change permissions to 400
touch ~/.ssh/config
chmod 600 ~/.ssh/configAdd this to the ~/.ssh/config file:
Host github.com IdentityFile ~/.ssh/github IdentitiesOnly yesIf you already have a remote set up, you may want to delete it, otherwise you may still be prompted for username and password:
git remote rm originThen add a remote to the git repository, and notice the colon before the user name:
git remote add origin :user_name/repo_name.gitAnd then git commands work normally, e.g.:
git push origin master
git pull origin @HeyWatchThis on this SO thread suggested adding IdentitiesOnly yes to prevent the SSH default behavior of sending the identity file matching the default filename for each protocol. See that thread for more information and references.
My solution was this:
create a script:
#!/bin/bash
KEY=dafault_key_to_be_used
PORT=10022 #default port...
for i in $@;do case $i in --port=*) PORT="${i:7}";; --key=*)KEY="${i:6}";; esac
done
export GIT_SSH_COMMAND="ssh -i $HOME/.ssh/${KEY} -p ${PORT}"
echo Command: $GIT_SSH_COMMANDthen when you have to change the var run:
. ./thescript.sh [--port=] [--key=]Don't forget the extra dot!! this makes the script set the environments vars!! --key and --port are optional.
All the information up to now (2020-01) are useful, but IMHO are a little bit messy, and no post sums them up to a clean solution.
So here are my solutions. If you are lucky with your current solution, then you are free to ignore this post.
Overall Premise:
Solution for *nix-based OS.
Tested on Debian-based OS, but should work on other *nix-based OS.
Overall Prerequisites:
- Separate identity files (keys) for different hosts and/or users available, e.g. generated via
ssh-keygen -f <filename> ...
Goals:
- Use a specific identity file (key) per repository (optional: per host)
- Works with any host: GitHub, GitLab, BitBucket, etc
- Simple to use and to adopt
- Prefer not messing around with URLs and use them as-is
- Prefer to use normal configuration of git and ssh
- (nice-to-have) Working in shell and gui tools
- (nice-to-have) Works with any tool: git, ssh, svn, rsync, etc.
Solutions:
- Convenient tool ssh-ident
- Just normal git and ssh, with a minor portition of shell magic
- Host renaming (also works with Putty/Pageant/Plink)
Note: A Match Path feature for OpenSSH would not help here, see
Solution #1 - Tool ssh-ident
Notes:
- Currently (as of 2020-01) I link my own fork of the original ssh-ident, as it gives more flexibility to argument and key filename matching.
- See docstring inside ssh-ident for how to use
Prerequisites:
- none
Download and prepare
- Download first to a project directory, then install to /usr/local/bin
DLDIR="${HOME}/work/packages/ssh-ident" [ -d "${DLDIR}" ] || mkdir -vp "${DLDIR}" # #original: DLURL=' DLURL=' wget -P "${DLDIR}" -N "${DLURL}/ssh-ident" unset -v DLURL # install -v -D -t /usr/local/bin "${DLDIR}/ssh-ident" ## Debian base >=11 "bullseye": sed -i -e '1 s#\(\spython\)\(\s\|$\)#\13\2#' /usr/local/bin/ssh-ident # unset -v DLDIR
Configure ssh-ident and the identities
- Prepare files and directories
[ -f ~/.ssh-ident ] || printf -- '\n' >~/.ssh-ident MYEXTRAIDENTITIES='1 gh2 dummy' for MYIDENTITY in ${MYEXTRAIDENTITIES}; do echo "${MYIDENTITY}" [ -d ~/.ssh/identities/"${MYIDENTITY}" ] || mkdir -vp ~/.ssh/identities/"${MYIDENTITY}" done chmod -v -R u=rwX,go= ~/.ssh/identities unset -v MYEXTRAIDENTITIES MYIDENTITY - Maintain configuration of ssh-ident to detect GitHub repositories
Example: ~/.ssh-ident... MATCH_ARGV = [ (r"\s(git@)?github\.com\s.*'my-git-user-1\/dummy\.git'", "dummy"), (r"\s(git@)?github\.com\s.*'my-git-user-1\/.+\.git'", "1"), (r"\s(git@)?github\.com\s.*'my-git-user-2\/.+\.git'", "gh2"), ... # (r"\s(git@)?gist\.github\.com\s.*'abcdef01234567890fedcba912345678\.git'", "1"), ... ] ... - Copy private keys plus their public keys(!) to the corresponding identity directory
- Optionally create a per-identity ssh config file
Example: ~/.ssh/identities/1/configHost github.com,gist.github.com IdentitiesOnly yes IdentityFile ~/.ssh/identities/1/github-user1.key User git
Enable ssh-ident
- Setup as ssh wrapper by installing as ssh via symbolic link to ssh-ident, either in /usr/local/bin for all users or in a user bin directory
ln -s -T /usr/local/bin/ssh-ident ~/bin/ssh - Testing ssh-ident config. Pass fitting parameters to the SSH call.
ssh -vT "test 'my-git-user-1/test-repo.git'" - Use git as normal.
Solution #2 - Just normal git and ssh
Prerequisites:
- git version 2.10+
- git config
core.sshCommand(2.10+)
- git config
- OpenSSH client version 6.5+
- function
Match(6.5+) - option
IdentityFile none(6.3+) - option
IdentitiesOnly(3.9+)
- function
Concept:
Use OpenSSH client config's Match Exec functionality to check for an environment variable (e.g. SSHGITUSER) to select a specific identity file (key).
Fail when environment variable is not set or contains an unknown user id.
Allows for the following options:
- One account on host: use
Hostblock in OpenSSH client config to directly define theIdentityFile= pure vanilla ssh standard, no environment variable needed - Multiple accounts on a host: pass the environment variable to the OpenSSH client, so it can react on it within
Matchblocks- Either set the environment variable directly in front of the git call (e.g.
SSHGITUSER='<id>' git ...)- Has to be used when cloning a git repository (e.g.
SSHGITUSER='<id>' git clone ...) - Works also for remotes that need different identity files (e.g.
SSHGITUSER='<id>' git fetch <remote>) - Works also when using environment variables
GIT_SSH_COMMANDorGIT_SSH(see docs)
- Has to be used when cloning a git repository (e.g.
- or use git config
core.sshCommandto hard-code it for a repository (e.g.git config --local core.sshCommand "SSHGITUSER='<id>' ssh")- Does not work for remotes that need different identity files
- Does not work when using environment variables
GIT_SSH_COMMANDorGIT_SSH(see docs) as these override git configcore.sshCommandof the repository
- Either set the environment variable directly in front of the git call (e.g.
Setting up OpenSSH client config ssh_config:
Whenever we connect via ssh to a host, then we only want to connect with the identity files we explicitly specify. This can be achieved by setting IdentitiesOnly to yes and IdentityFile to none in a matching Host block, then no other identity files are offered to the target server, even when cached inside ssh-agent, nor the default key definitions will be tried.
If a default Host block exists for all servers, then extend its pattern to exclude the special host there.
Select the wanted identity file by checking an environment variable (e.g. SSHGITUSER). Define an id (number, letter or name) for each user and create a Match block for each id. The Match block should check the Host first to avoid using the identity file for other hosts and to avoid useless calls to the shell for testing the environment variable.
Specifing the user git for github.com and gist.github.com allows to remove git@ from the URL. This setting is overriden when a user is defined in the URL.
Example ~/.ssh/config for GitHub:
...
### >>> GitHub
## use: SSHGITUSER='<id>' git ...
## optional: git config --local core.sshCommand "SSHGITUSER='<id>' ssh"
Host github.com,gist.github.com IdentitiesOnly yes IdentityFile none User git
Match Host github.com,gist.github.com Exec "test ${SSHGITUSER:-_} = '1'" IdentityFile ~/.ssh/github-user1.key
Match Host github.com,gist.github.com Exec "test ${SSHGITUSER:-_} = 'gh2'" IdentityFile ~/.ssh/github-user2.key
Match Host github.com,gist.github.com Exec "test ${SSHGITUSER:-_} = 'dummy'" IdentityFile ~/.ssh/github-dummy-fake.key
### <<< GitHub
...
Host !github.com,!gist.github.com,* IdentityFile ~/.ssh/personal.key
...Notes:
- If only a single identity file is used for a host, then in the related
Hostblock changeIdentityFilefromnonedirectly to the identity file and noMatchblocks are needed. - Remote
Usercan also be set in aMatchblock. Remember a user in the URL overrides this setting.
Testing ssh config:
Pass the environment variable for the SSH call by defining it directly in front of the command.
Use a wrong user in the URL to avoid actual logins as we just want to see the identity files offered to the server.
SSHGITUSER='1' ssh -vT Setting up git config of a repository for a hard-coded user id:
To hard-code the user id to a repository use git config core.sshCommand on the repository itself (via --local) to pass the environment variable to the ssh command.
The ssh command for git is either defined by the environment variable GIT_SSH_COMMAND (since git 2.3) or git config core.sshCommand (since git 2.10). If both are empty, then it normally defaults to just ssh (see Code funtions get_ssh_command() and fill_ssh_args() in connect.c).
Special case is when cloning a repository, then there is no config for the not yet cloned repository, and the environment variable has to be set directly in front of the git call (e.g. SSHGITUSER='<id>' git clone ...).
Example:
SSHGITUSER='1' git clone :my-git-user-1/test-repo.git ~/work/test-repocd ~/work/test-repo
git config --local core.sshCommand "SSHGITUSER='1' ssh"
# Test: git fetchNotes:
When using environment variables GIT_SSH_COMMAND or GIT_SSH (see docs) these will override git config core.sshCommand of the repository.
Check first via set | grep -e '^GIT_SSH' and if any is set, then adapt from using environment variables to git config core.sshCommand of the user (via --global) and remove the GIT_SSH[_COMMAND] variable.
(e.g. git config --global core.sshCommand "<content of used GIT_SSH[_COMMAND] variable>", plus git config --local core.sshCommand "SSHGITUSER='<id>' <content of used GIT_SSH[_COMMAND] variable>")
Other ideas for #2:
- Use environment variable for
IdentityFile ~/.ssh/github-${SSHGITUSER}.keyorUser ${SSHGITUSER}. Has the tendency to longer user ids.
Setting up other tools for #2:
On the command line just pass the environment variable by defining it directly in front of the command.
For hard-coding the user id the task is to find out how to pass the environment variable to the tool, e.g. configuration, wrapper script, alias, etc.
Solution #99 - Host renaming
Prerequisites:
- none
Concept:
As also mentioned in this thread you can rename the host as described in the git FAQ for the ssh config to recognize it, choose the identity depending on it and set the correct host name.
I normally do not prefer to mess up URLs instead of using configurations/variables.
Still I would then add the user id as a subdomain, e.g. <user id>.github.com.
After some talk adding the user id behind the host has the advantage that normally DNS resolution will fail as the TLD got messed up and therefore the connection will immediately fail also.
Extended the example for this, e.g. github.com-<user id>.
This also works for Plink and Pageant from Putty.
Putty checks for a saved session named like the "host", e.g. session github.com-<user id>. This can be used for this solution.
Then Putty checks for a session which references the host, e.g. session testing with host github.com. Just to let you know.
Example ~/.ssh/config for GitHub:
...
### >>> GitHub
Host github.com,gist.github.com,*.github.com,*.gist.github.com,github.com-*,gist.github.com-* IdentitiesOnly yes IdentityFile none User git
Host 1.github.com,github.com-1 IdentityFile ~/.ssh/github-user1.key Hostname github.com
Host 1.gist.github.com,gist.github.com-1 IdentityFile ~/.ssh/github-user1.key Hostname gist.github.com
Host gh2.github.com,github.com-gh2 IdentityFile ~/.ssh/github-user2.key Hostname github.com
Host gh2.gist.github.com,gist.github.com-gh2 IdentityFile ~/.ssh/github-user2.key Hostname gist.github.com
### <<< GitHub
Host !github.com,!gist.github.com,* IdentityFile ~/.ssh/personal.key
... 1 While the question doesn't request it, I am including this answer for anyone else looking to solve the same problem just specifically for gitlab.
The gitlab solution
I tried using the environment-variables approach, but even the git documentation recommends using ~/.ssh/config for anything more than the simple case. In my case I am pushing to a gitlab server - and I wanted to do so as a specific user - which is of course defined by the private-key during authentication and not the username git. Once implemented I simply perform the following:
~/myrepo> git mycommit -m "Important Stuff"
~/myrepo> git mypush
[proceed to enter passphrase for private key...]Setup
Recall the location of your private-key /myfolder/.ssh/my_gitlab_id_rsa in my case.
Add an entry in ~/.ssh/config:
Host gitlab-delegate HostName gitlab.mydomain.com User git IdentityFile /myfolder/.ssh/my_gitlab_id_rsa IdentitiesOnly yesAdd the git-alias in ~/.gitconfig:
mypush = "!f() { \ path=$(git config --get remote.origin.url | cut -d':' -f2); \ branch=$(git rev-parse --abbrev-ref HEAD); \ git remote add gitlab_as_me git@gitlab-delegate:$path && \ git push gitlab_as_me $branch && \ git pull origin $branch; \ git remote remove gitlab_as_me; \ }; f"As a bonus, I perform my commits on this same host as a specific user with this git-alias:
mycommit = "!f() { \ git -c "user.name=myname" -c "user.email=" commit \"$@\"; \ }; f"Explanation
All of the above assumes the relevant remote is origin and the relevant branch is currently checked out. For reference I ran into several items that needed to be addressed:
- The solution requires creating a new remote
gitlab_as_me, and I didn't like seeing the extra remote hanging around in my log tree so I remove it when finished - In order to create the remote, there is a need to generate the remote's url on the fly - in the case of gitlab this was achieved with a simple bash cut
- When performing a push to
gitlab_as_meyou need to be specific about what branch you are pushing - After performing the push your local
originpointer needs to be "updated" in order to matchgitlab_as_me(thegit pull origin $branchdoes this)
Just use ssh-agent and ssh-add commands.
# create an agent
ssh-agent
# add your default key
ssh-add ~/.ssh/id_rsa
# add your second key
ssh-add ~/.ssh/<your key name>After executing the above commands, you can use both keys as same time. Just type
git clone :<yourname>/<your-repo>.gitto clone your repository.
You need to execute the above command after you reboot your machine.
3 # start :: how-to use different ssh identity files # create the company identity file ssh-keygen -t rsa -b 4096 -C "" # save private key to ~/.ssh/id_rsa.corp, cat ~/.ssh/id_rsa.corp.pub # copy paste this string into your corp web ui security ssh keys # create your private identify file ssh-keygen -t rsa -b 4096 -C "" # save private key to ~/.ssh/id_rsa.me, note the public key ~/.ssh/id_rsa.me.pub cat ~/.ssh/id_rsa.me.pub # copy paste this one into your githubs, private keys # clone company internal repo as follows GIT_SSH_COMMAND="ssh -i ~/.ssh/id_rsa.corp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no" \ git clone :corp/project.git export git_msg="my commit msg with my corporate identity, explicitly provide author" git add --all ; git commit -m "$git_msg" --author "MeFirst MeLast <>" GIT_SSH_COMMAND="ssh -i ~/.ssh/id_rsa.corp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no" \ git push # and verify clear ; git log --pretty --format='%h %ae %<(15)%an ::: %s # clone public repo as follows GIT_SSH_COMMAND="ssh -i ~/.ssh/id_rsa.corp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no" \ git clone :acoolprojectowner/coolproject.git export git_msg="my commit msg with my personal identity, again author " git add --all ; git commit -m "$git_msg" --author "MeFirst MeLast <>" GIT_SSH_COMMAND="ssh -i ~/.ssh/id_rsa.me -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no" \ git push ; # and verify clear ; git log --pretty --format='%h %ae %<(15)%an ::: %s # stop :: how-to use different ssh identity files There are already a great many proposed solutions here, including numerous options working around the GIT_SSH_COMMAND environment variable, many of which I've actually used myself over the years.
However, I would like to share a much simpler process that I recently discovered, using only direnv.
My personal favourite point of this method: it requires no modification of any Git config files, but it also won't conflict with any modifications you may want/need/have..
Note: I'm going to approach this with one "primary" SSH key to use by default, and one "secondary" SSH key to use for specific projects. This will fit in well with doing "work" things on a "personal" machine, or vice versa, as well as extending to any additional "special" SSH keys you may need.
Also, I should note that I use this for both GitHub and GitLab, with a "work" and "personal" SSH keys on each platform, from multiple separate computers, and it "Just Works"(tm).
The following steps do make a few assumptions here:
- you're running in a Unix-like environment (Linux, macOS, WSLv2 on Windows)
- primary SSH key in
~/.ssh/id_ed25519 - secondary SSH key in
~/.ssh/id_ed25519_personal - work workspace in
~/workspace - personal workspace in
~/personal
With that in place, the configuration process itself is dead simple:
- install
direnv, ensure it's loaded by.bashrc/.zshrc/.profile/etc. - create a file at
~/personal/.envrcwithexport GIT_SSH_COMMAND="ssh -i ~/.ssh/id_ed25519_personal" - open terminal at
~/personal
- at this point, you might see a message like
direnv: error /Users/$USER/personal/.envrc is blocked. Rundirenv allowto approve its content. note: you will see this message every time the target.direnvfile is modified.
At this point, navigating into ~/personal in your terminal (or any subfolder, even directly) will load environment variables from .envrc, and navigating out to anywhere else will unload them.
Here's an example of this in action on macOS running ZSH enhanced with OMZ (bonus: OMZ comes bundled with a direnv plugin, which adds the binary to your $PATH and shows it's "active" status in your terminal window):
~ ------------------------------------------------------------------- 11:00:33
> cd workspace ~/workspace --------------------------------------------------------- 11:00:39
> echo $GIT_SSH_COMMAND ~/workspace --------------------------------------------------------- 11:00:40
> cd ../personal
direnv: loading ~/personal/.envrc
direnv: export +GIT_SSH_COMMAND ~/personal ------------------------------------------------- direnv | 11:00:47
> echo $GIT_SSH_COMMAND
ssh -i ~/.ssh/id_ed25519_personal ~/personal ------------------------------------------------- direnv | 11:00:49
> cd ..
direnv: unloading ~ ------------------------------------------------------------------- 11:00:52
> echo $GIT_SSH_COMMAND ~ ------------------------------------------------------------------- 11:00:53
>Hope this helps some people.. (:
I'm using git version 2.16 and I don't need a single piece of script not even a config or modified commands.
- Just copied my private key to .ssh/id_rsa
- set permissions to 600
And git reads to key automatically. I doesn't ask anything and it doesn't throw an error. Just works fine.
1When you have multiple git account and you want different ssh key
You have to follow same step for generating the ssh key, but be sure you
ssh-keygen -t ed25519 -C Enter the path you want to save(Ex: my-pc/Desktop/.ssh/ed25519)
Note: ed25519 is the folder name
Add the public key to your gitlab (How to adding ssh key to gitlab)
You have to new ssh identity using the below comand
ssh-add ~/my-pc/Desktop/.ssh/ed25519 1 Before calling your usual git commands run:
eval $(ssh-agent)
ssh-add ~/.ssh/your_spesific_private_key 1 For MacOS:
git config core.sshCommand "ssh -i ~/.ssh/id_rsa_2" All of the answers above are correct, but they all fail, when using something like terraform
Imaginge this scenario
- You have a personal github account
- You join a new company, and create another github account with your work email
If you follow the instructions above, in 99% of the time, they will work. However, let's say you use terraform, with private git repos, and you have terraform modules and all of these modules are defined as
module "module_name" { source = ":company/" ..
}Then when terraform tries to fetch these modules, they will fail. This is the problem.
Your constraints are
- You cannot modify the source code
- You will have to swap your private and work keys in your ssh config
See the problem?
Here is a better solution, that will work for many combinations
- You define a gitconfig, that allows you to override your gitconfig See
$ cat ~/.gitconfig
[user] email = name = Name Surname
[includeIf "gitdir:**/company_name/"] path = ~/.git-preferences/work/company_name/.gitconfig- Inside of your preferences file for your company you add your ssh key to be used
$ cat ~/.git-preferences/work/company_name/.gitconfig
[user] email =
[core] sshCommand = ssh -i ~/.ssh/namesurname-company- With terraform specefically, it ignores the ssh command in the git config, and it will only work if you set the env variable Therefore you will also need to issue the command
export GIT_SSH_COMMAND="ssh -i ~/.ssh/namesurname-company"This is the only way that I could get it working for all cases