I have used Puttygen to create a public and a private key, and then is ready to let TortoiseHg on Windows 7 do a clone by going to

ssh://somebody@code.somewhere.com/somecode

but there seems to be no where to add the private key to TortoiseHg? (or even just the mercurial command line)

The file is already some where on hard disk as somefile.ppk Does someone know how to add it?

link|improve this question

67% accept rate
This question is duplicated on SuperUser: serverfault.com/questions/147136/… I think it belong there instead of StackOverflow since it is not related to programming, but to software in general. – Martin Geisler Jun 2 '10 at 7:56
feedback

1 Answer

up vote 19 down vote accepted

Either add the following to the [ui]-section of the mercurial.ini in your home directory (assuming your key is in "C:\Users\UserName\mykey.ppk"):

[ui]
ssh = tortoiseplink.exe -ssh -i "C:\Users\UserName\mykey.ppk"

or use Pageant, found in the TortoiseHg installation path (e.g. C:\Program Files\TortoiseHg\Pageant.exe). Start it, double click the taskbar-icon that appears, and add the .ppk-file.

link|improve this answer
1  
i see. thanks. i may add here that the "home directory" on Windows 7 is something like c:\users\peter – 動靜能量 Jun 4 '10 at 5:20
Note that if you want to specify your username, that can be done with the -l switch for tortoiseplink (add "-l myusername" to this ssh-line) – Touko Mar 25 '11 at 7:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.