How to connect github using ssh?
Step 1: Generate SSH key
ssh-keygen -t rsa -b 4096 -C "your_email_id@example.com"
Step 2: Add SSH key to SSH agent
eval "$(ssh-agent -s)"
if you are window user so this command run with the help of cygwin
Step 3: Copy the public key
clip < ~/.ssh/i...
gauravnumber.hashnode.dev2 min read