Step-by-Step Guide to Linking an SSH Key with Your GitHub Repositories
1. Generate a New SSH Key
Run the following command to generate a new SSH key specifically for GitHub:
ssh-keygen -t ed25519 -C "your_email@example.com" -f ~/.ssh/id_github
Explanation:
-t ed25519: Specifies the key type.
-C "your_email@example.co...
blogs.ummerfarooq.dev2 min read