Reputation: 597342
Simply, I can't:
HTTPS push
SSH push
Upvotes: 8
Views: 26029
Reputation: 38199
Getting Started with Git and GitHub on Windows has the answer and will guide you through all the steps to start using Git and GitHub from Windows. In a nutshell: install msysgit (Git for Windows) and use it to generate the key.
Upvotes: 2
Reputation: 73798
You are correct that Putty generates a keypair in a different format than OpenSSH does. However, the Putty key generation tool lets you open one of its keys and can then produce an OpenSSH-compatible public key. It looks like this:
You should be able to upload that to GitHub.
Upvotes: 1
Reputation: 597342
Well, using the Git bash of msysgit worked:
git push <address>
(the GUI didn't work, even after reinstalling msysgit with different options)
Upvotes: 3