How do I clone a git repository using an SSH key in Windows?
How do I clone a git repository using an SSH key in Windows? I suggest that you follow those steps: Step 1: Check for existing SSH keys. $> ls -al ~/.ssh. Step 2: Generate a new SSH key. $> ssh-keygen -t rsa -b 4096 -C “yourEmail” Step 3.1: Add the SSH key to your GIT […]