|
|
|
|
|
by qntmfred
979 days ago
|
|
I used to do it that way. Recently learned this approach put this in your ~/.gitconfig-personal [core]
sshCommand = "ssh -i ~/.ssh/github_personal_ed25519"
and this in your ~/.gitconfig-work [core]
sshCommand = "ssh -i ~/.ssh/github_work_ed25519"
|
|
You can also set that in your `.git/config` file on a per repo basis. Additionally you can set `GIT_SSH_COMMAND="ssh -i /tmp/custom_key_ed25519 -o IdentitiesOnly=yes" git pull` to override whatever is in your global or repo config for 1 off pulls / clones as a different user.