Programming/Others

GitHub generate SSH Key

neopin 2021. 12. 6. 21:35

Let's create SSH Key for git

 

* Account Settings > [SSH and ...] Click!

* [New SSH key] Click!

* Path of id_rsa.pub

cd ~/.ssh
ll

* Generate id_rsa.pub

ssh-keygen

* Show id_rsa.pub

cat id_rsa.pub

* Copy and Paste "ssh-rsa ..." to Key

* Write Title

* [Add SSH key] Click!

* END~