Created
April 1, 2022 04:40
-
-
Save shahali007/d6c3e99b5bdea6a58bd53fddcbfe3dc1 to your computer and use it in GitHub Desktop.
generate ssh-rsa
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
| ssh-keygen -t ed25519 -C "your_email@example.com" | |
| eval "$(ssh-agent -s)" | |
| ssh-add ~/.ssh/id_ed25519 | |
| cat ~/.ssh/id_ed25519.pub | |
| // for more information: https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment