Setup SSH Key for Git services on Windows
Installing Git Git-scm.com Generating SSH key Open Terminal, type these and just hit Enter 1 ssh-keygen -t ed25519 It will generate a public key (id_ed25519.pub) and a private key (id_ed25519) in your home directory %userprofile%\.ssh. I’m gonna call it <private_file> and <public_file>.pub from now on. Create config file Navigate to %userprofile%\.ssh Create new text file and name it config.txt Add these lines Host <your_git_service>.com HostName <your_git_service>.com IdentityFile ~/.ssh/<private_file> IdentitiesOnly yes Save it and REMOVE THE ....