Adding an SSH key to your GitHub account from a MacBook
Adding an SSH key to your GitHub account from a MacBook involves a few steps. Here's a guide:
Open Terminal on your MacBook.
Generate SSH Key:
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
Start the SSH agent:
eval "$(ssh-agent -s)"
A...
amrit69.com.np1 min read