Answers for "how to create ssh key for github"

1

how to create ssh key for github

$ eval "$(ssh-agent -s)"
> Agent pid 59566
Posted by: Guest on June-18-2020
3

how to create ssh key for github

$ ssh-keygen -t ed25519 -C "[email protected]"
Posted by: Guest on November-11-2020
0

how to create ssh key for github

$ ssh-add ~/.ssh/id_ed25519
Posted by: Guest on May-19-2021
0

how to create ssh key for github

$ sudo -s -H
$ eval "$(ssh-agent -s)"
> Agent pid 59566
Posted by: Guest on May-19-2021
1

how to create ssh key for github

> Enter passphrase (empty for no passphrase): [Type a passphrase]
> Enter same passphrase again: [Type passphrase again]
Posted by: Guest on October-14-2020
0

how to create ssh key for github

> Generating public/private ed25519 key pair.
Posted by: Guest on May-19-2021
-2

how to create ssh key for github

> Enter a file in which to save the key (/home/you/.ssh/id_ed25519): [Press enter]
Posted by: Guest on May-19-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language