Last active
January 13, 2021 00:21
-
-
Save Joxebus/82a3f4348a7360bb48e823eec45b9f8f to your computer and use it in GitHub Desktop.
Revisions
-
Joxebus revised this gist
Jan 13, 2021 . 1 changed file with 4 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,8 @@ # ~/.ssh/config # For any configuration different than defined hosts Host * IdentityFile ~/.ssh/id_rsa User obautista # Github Host github.com -
Joxebus created this gist
Sep 25, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ # ~/.ssh/config # Default IdentityFile ~/.ssh/id_rsa # Github Host github.com HostName github.com User git AddKeysToAgent yes UseKeychain yes IdentityFile ~/.ssh/personal_rsa # Custom URL Host customdomain.com HostName customdomain.com User git AddKeysToAgent yes UseKeychain yes IdentityFile ~/.ssh/work_rsa