create ssh for github code example
Example 1: genrate shh key github
$ ssh-keygen -t rsa -b 4096 -C "[email protected]"
Example 2: add ssh key to github
ssh-add -l
ssh-keygen -t rsa -b 4096 -C your__gmail
sudo apt install xclip
xclip -sel clip < ~/.ssh/id_rsa.pub
DONE!!!
Example 3: how to create ssh key for github
$ eval "$(ssh-agent -s)"
> Agent pid 59566
Example 4: github generate new ssh key
$ ssh-keygen -t ed25519 -C "[email protected]"
Example 5: add ssh to github
$ clip < ~/.ssh/id_ed25519.pub
Example 6: how to create ssh key for github
> Generating public/private ed25519 key pair.