Reputation: 6323
I am having trouble creating keys for GitHub. I am following the instructions from How to use TortoiseGit.
At Creating a SSH key for GitHub:
I am having trouble at step 1. I don't know how to "Mark the key in the text area and paste it into your github account settings".
Thanks
Upvotes: 4
Views: 4769
Reputation: 1
Follow this command line for adding ssh key to avoid authentication(linux, windows, mac):
That's all.
Upvotes: 0
Reputation: 1
Membuat SSH KEY : http
absyid@absyid-ThinkPad-X240:~$ ssh-keygen -t ed25519 -C "email"
Generating public/private ed25519 key pair.
Enter file in which to save the key (/home/absyid/.ssh/id_ed25519):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /home/absyid/.ssh/id_ed25519
Your public key has been saved in /home/absyid/.ssh/id_ed25519.pub
The key fingerprint is:
The key's randomart image is:
absyid@absyid-ThinkPad-X240:~$ ls -al ~/.ssh
total 16
Upvotes: 0
Reputation: 5167
Log into www.github.com, then in the top right hand corner there is a link entitled "Account Settings", then after clicking it, there is a list on the left hand side of the page, click the one that says "SSH Public Keys".
Upvotes: 4