Skip to content

Commit

Permalink
fix(ssh): fix config file for ssh files (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
RemoteRabbit authored Oct 9, 2024
1 parent 0635aef commit f4599dd
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions ssh/config
Original file line number Diff line number Diff line change
@@ -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/<client name>

Host [email protected]
HostName [email protected]
IdentityFile ~/.ssh/wendys

0 comments on commit f4599dd

Please sign in to comment.