Last active
April 5, 2022 04:19
-
-
Save ollytheninja/40a7e35df73970d83a2e7d15e270a0b8 to your computer and use it in GitHub Desktop.
Handy defaults to add to your ~/.ssh/config file
This file contains 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 characters
Host * | |
UseKeychain yes | |
AddKeysToAgent yes | |
IdentityFile ~/.ssh/id_rsa | |
Host pi | |
HostName raspberrypi.local | |
User pi | |
StrictHostKeyChecking no | |
UserKnownHostsFile=/dev/null | |
Host ssh.dev.azure.com | |
User git | |
PubkeyAcceptedAlgorithms +ssh-rsa | |
HostkeyAlgorithms +ssh-rsa |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment