How to successfully add ssh keys to your linux machine and connect them to your GitHub account)
Paste the command below and add an email address linked to your github account.
$ ssh-keygen -t ed25519 -C "your-github-email-address"
Enter file in which to save the key (/home/username/.ssh/id_ed25519):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
NB: -You can presse enter throughout to use defaults. or -You will then be prompted to enter the path and name of your existing or new file you need to save your ssh key. for instance /home/username/.ssh/file-name where [file-name] is the name if the file you need to save your ssh key. Then press enter.
Appearance of your terminal
# Your output appears like this
The key fingerprint is:
SHA256:7bHf5wcoraPjaAO5thuS7TjiQC/rFEfProfh/U811cQ your-github-email-address
The key's randomart image is:
+--[ED25519 256]--+
| ..|
| oE|
| . . . .|
| . o o . . |
| + =.o S o.o. |
| @++ ..+o.. |
| =.=*o +o . |
| o .=+=...o. . o|
| ..+=.+++... .oo|
+----[SHA256]-----+
$ eval "$(ssh-agent -s)"
# windows
> start-ssh-agent
$ ssh-add ~/.ssh/file-name
Cop the output and follow the steps to add SSH Key to github.
$ cat ~/.ssh/file-name.pub
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDEgJhakH0sUfyWwaoSBCgDIanMDBDxea3VcpxJZTjZJ your-github-email-address
Steps:
- Go to Settings
- SSH and GPG Keys
- On SSH Keys click New SSH Key
- Add the name of the key and paste the private ssh key here.
- Click Add SSH Key
This is an opensource project under MIT License
so any one is welcome to contribute from typo, to source code to documentation, JUST FORK IT
.
- zipa-tech
- All other contributors