Last active
August 29, 2015 14:01
-
-
Save sdurandeu/aae46604b1ab27001885 to your computer and use it in GitHub Desktop.
Create SSH Key and Key Fingerprint
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
// see https://help.github.com/articles/generating-ssh-keys | |
// Get fingerprint | |
ssh-keygen -l -f /path/to/keys/id_rsa.pub | |
// Generate key | |
ssh-keygen -t rsa -C "[email protected]" | |
ssh-add ~/.ssh/id_rsa |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment