Created
May 15, 2011 11:26
-
-
Save abi/973069 to your computer and use it in GitHub Desktop.
ssh_config no prompts
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 characters
# Mirrored at https://gist.github.com/973069 | |
# If you update this file, remember to update the gist because most Gambino setup functions `wget` the gist before | |
# anything else (before it even installs git) | |
# When SSH into Github, do not prompt the user if they want to add the host keys to the ~/.ssh/known_hosts file | |
StrictHostKeyChecking no | |
# Implicity trust keys so don't if the authenticity of a host like github.com can't be established | |
VerifyHostKeyDNS yes | |
# Fool OpenSSH into thinking that we've never connected to this server before | |
UserKnownHostsFile /dev/null |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment