make ssh for your git profile
ssh-keygen -t ed25519 -C "[email protected]" -f ~/.ssh/id_ed25519_global
ssh-keygen -t ed25519 -C "[email protected]" -f ~/.ssh/id_ed25519_work
ssh-keygen -t ed25519 -C "[email protected]" -f ~/.ssh/id_ed25519_personal
usually I cp global to only id_ed25519 for default user
; optional but if you want
cp id_ed25519_global.pub id_ed25519.pub
cp id_ed25519_global id_ed25519
edit ~/.gitconfig
and then edit it like this
; this is for global users
[user]
name = yourusername
email = youremailgmail.com
[includeIf "gitdir:~/Dev/personal/"]
path = ~/Dev/personal/.gitconfig
[includeIf "gitdir:~/Dev/work/**"]
path = ~/Dev/work/.gitconfig
[includeIf "gitdir:~/Dev/tutorial/"]
path = ~/Dev/tutorial/.gitconfig
and this is value of ~/Dev/work/.gitconfig
[user]
name = work
email = [email protected]
[core]
sshCommand = "ssh -i ~/.ssh/id_ed25519_work -o IdentitiesOnly=yes"
close and
try clone one of your project
on cloned folder run this:
git config --get core.sshCommand
; its will show something like this : "ssh -i ~/.ssh/id_ed25519_global -o IdentitiesOnly=yes"
; or this if command above not working
git config --get --show-origin core.sshCommand
you're done