How to set up multiple ssh keys (accounts) in multiple workspaces
https://blog.gitguardian.com/8-easy-steps-to-set-up-multiple-git-accounts/ Create ssh keys using key-gen (id_personal, id_prof) Add keys using ssh-agent Create config file in ~/.ssh/config # ~/ssh/config Host * AddKeysToAgent yes UseKeychain yes IdentityFile ~/.ssh/<personal_key> Host * AddKeysToAgent…