How to use Github SSH Key and Switch HTTPs based projects to SSH (My Rough Note)
Generate new SSH
Go to the ssh directory
$ cd ~/.ssh
View the existing ssh keys
$ ls
Generate new key
$ ssh-keygen -t rsa -b 4096 -C "your_email@domain.com"
After generating a new key, you'll be given the private and the public key. The public key en...
abdqaadir.hashnode.dev2 min read