HowTo SSH Keys
Jump to navigation
Jump to search
Add key to the destination repository (e.g.
Generate and deploy SSH Keys to Github
Generate the keys
- Generate key
$ ssh-keygen -t ed25519 -C "your_email@example.com"
- Name the file
id_github_sigrokorgand store it somewhere in your home directory (e.g./home/frank/.ssh) - Don't enter a password
- You now have two files:
id_github_sigrokorg(the private key) andid_github_sigrokorg.pub(the public key)
Add key to the destination repository (e.g. libsigrokflow)
- Go the the github page for of the repository in question (e.g. https://github.com/sigrokproject/libsigrokflow)
- Click on "Settings" (repository settings)
- Click on "Deploy keys"

