Bozho
Bozho

Reputation: 597342

How to push with git to github on Windows?

Simply, I can't:

Upvotes: 8

Views: 26029

Answers (4)

namin
namin

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

Martin Geisler
Martin Geisler

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:

Putty key gnerator

You should be able to upload that to GitHub.

Upvotes: 1

Bozho
Bozho

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

SLaks
SLaks

Reputation: 888047

Use Git Extensions.

Upvotes: -1

Related Questions