Answers for "github keys setup"

2

github ssh key setup

$ ssh-keygen -t ed25519 -C "[email protected]"
# start the ssh-agent in the background
$ eval "$(ssh-agent -s)"
> Agent pid 59566
ssh-add ~/.ssh/id_ed25519
clip < ~/.ssh/id_ed25519.pub
Posted by: Guest on March-06-2022
0

github use key

Host github.com
 HostName github.com
 IdentityFile ~/.ssh/id_rsa_github
Posted by: Guest on June-04-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language