22

I have a strange problem with tortoise git at the moment, which I can't figure out. When trying to commit to my repository on github I get the error

ERROR: Permission to martindevans/Hermes.git denied to key2

Key2 is a key I use to access a different github repository, however the remote url is not set to use key2, as you can see here it's set to use private.ppk

enter image description here

Am I doing something obviously wrong, or is tortoise git broken?

Nb. In response to the comments. Using normal git results in:

C:\Users\Martin\Documents\Visual Studio 2010\Projects\Hermes>git push
Permission denied (publickey).
fatal: The remote end hung up unexpectedly
hichris123
  • 9,735
  • 15
  • 51
  • 66
Martin
  • 11,693
  • 11
  • 59
  • 121

4 Answers4

35

There are different private key formats. My keypair was generated with puttygen, but my Tortoise was configured to use ssh.exe (form msysgit) as ssh-client. So i changed it to plink (from Tortoise) and it worked.

  • ssh-key.exe => ssh.exe (C:\msysgit\msysgit\bin)
  • puttygen.exe => TortoisePlink.exe (C:\Program Files\TortoiseGit\bin)

Additional note: Use the correct URL! Github offers you three URL https, git and ssh.


Edit:

I adapted the settings here:

Settings - TortoiseGit >> Network >> SSH-Client
C:\Program Files\TortoiseGit\bin\TortoisePLink.exe

I have generated the key-pair with:

 C:\Program Files\TortoiseGit\bin\puttygen.exe
Doomjunky
  • 928
  • 13
  • 18
13

Hah! ProcMon to the rescue. This is a bug in tortoisegit / tortoiseplink. It should give preference to the key set for that remote via pageant, but instead it gives preference to the key stored in the registry by putty for that specific server. Two fixes.

2 possible fixes here

Your tortoiseplink is integrated with putty, and it's reading the private key you have saved in the putty "Session" associated with that server. At least that's what it was for me. I'm not on github though, so I don't know the viability of this solution for everybody.

I'd recommend deleting the key set manually in the putty session configuration and using pagaent for your putty sessions, as that's what tortoise git does. This also makes tortoisegit use the key set for the remote.

  1. So, you can open up putty, load whatever session you have associated with the server, go to the Connection/SSH/Auth and modify / remove the "Private key file for authentication" value. MOdification may fix this repo but then screw up another repo if you are using different keys for the same server.

  2. You can modify / delete the registry entry yourself. it's HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\$SERVERNAME$\PublicKeyFile

scaryman
  • 1,812
  • 1
  • 19
  • 30
  • 1
    tortoisegit bug report : http://code.google.com/p/tortoisegit/issues/detail?id=1347 – scaryman Nov 20 '12 at 19:15
  • 1
    There is also the `Default%20Settings` as a `$SERVERNAME` session key that I'd missed which also contained a PublicKeyFile – icc97 Dec 30 '13 at 14:14
  • Thanks! In my case, it happens when I changed "Private key file" and Auto-login username in "Data" section under "Default Settings" on Putty. When I revert those changes TortoiseGit worked again. – endo64 Dec 04 '19 at 09:41
  • I had a private key set in my Default Settings for PuTTY under Connection -> SSH -> Auth and it broke both command-line git and TortoiseGit. PLink worked fine when I manually specified the key with the -i option, oddly enough. – Adam Haun Mar 26 '20 at 16:13
1

I had the same problem setting up my TortoiseGit to access Bitbucket (Win10). To resolve it I had to delete the old saved host keys in the registry at HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\SshHostKeys (not the (Default) key, tho).

1

create the key in git bash:

ssh-keygen -t rsa

Leave everything blank and don't set a password. Take the contents of the ~/.ssh/id_rsa.pub and paste it into the public key space provided by github.

Now test this by connecting to github via ssh. If that works, you will be able to use git.

hope this helps.

Adam Dymitruk
  • 109,813
  • 21
  • 138
  • 137
  • Creating a new key may solve the problem temporarily, but I doubt it will solve things long term. This has all been working until today where my computer is apparently deciding to use the wrong key to connect to github. – Martin Mar 19 '11 at 04:45
  • My Git version cannot even load keys generated this way. The keys I generate with putty get loaded, the ones created with gitbash give the error: "Cannot load keyfile" when trying to push to a repo. – atripes Nov 25 '14 at 13:59