diff --git a/ssh/config b/ssh/config index fb6e8c7..8b6b10f 100644 --- a/ssh/config +++ b/ssh/config @@ -1,7 +1,14 @@ -Host github.com - HostName github.com - IdentityFile ~/.ssh/personal-github +# Personal GitHub account +Host github.com-personal + HostName github.com + AddKeysToAgent yes + User git + IdentityFile ~/.ssh/proton + +# Work GitHub account +Host github.com-work + HostName github.com + AddKeysToAgent yes + User git + IdentityFile ~/.ssh/ -Host git@gitlab.com - HostName git@gitlab.com - IdentityFile ~/.ssh/wendys