Last active
March 1, 2016 10:35
-
-
Save fmasuhr/6581808 to your computer and use it in GitHub Desktop.
Store the passphrase for your default key in the Keychain. This will prevent you from entering this every time after a system restart.
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
# SSH key on OS X | |
ssh-add -K |
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
# SSH key in Vagrant | |
# You might need to start ssh-agent before you run the ssh-add command | |
eval `ssh-agent -s` | |
ssh-add |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment