7

I am trying to clone a private repository owned by another developer. I do not have direct communication with this developer. They sent me a theirusername-id_rsa.pub file and a theirusername-priv.key.ppk file. I understand the ppk file is specific to to Putty ssh client. Can someone provide me with steps on how to clone their repo? I already have git configured with my own account and I think I have to add their ssh key to my ssh/config file or something, but I'm a bit of an ssh noob.

git clone git@github.com:theirusername/pro.git
Cloning into 'pro'...
Permission denied (publickey).
fatal: The remote end hung up unexpectedly

Edit: I was able to get access to the github repository and add myself as a collaborator. Even after doing so I couldn't

git clone git@github.com:theirusername/pro.git

however

git clone https://github.com/theirusername/pro.git

did work.

user1071182
  • 1,507
  • 3
  • 19
  • 25

3 Answers3

14

They sent me a theirusername-id_rsa.pub file and a theirusername-priv.key.ppk

First of all, tell them to never do this. The public/private keys are called like that for a reason. It’s against its point to have multiple instances (persons or computers) share the same key. You should use a separate key for every single one, to have a 1-to-1 association between them.

If they can’t add you as a collaborator (which would require a user account for yourself), then they should just add your key to their own profile. I’m emphasizing on “your key”, as you should generate it and send them only the public key. The private one should always remain secret to everybody else.

That being said, when you have a PPK, a PuTTY private key file, you have two options. First would be to use PuTTY’s pageant to load the key file and make Git use PuTTY’s plink as the SSH client. You can do that by setting the GIT_SSH environment variable to the path to plink.exe, e.g. C:\Program Files\PuTTY\plink.exe.

The second option would be to convert the PPK to an OpenSSH key file which the SSH client that comes with Git can use. You can do that by opening the PPK with PuTTYgen and choosing “Conversions/Export OpenSSH key”. You should save the file as C:\Users\<username>\.ssh\id_rsa to make Git use it.

poke
  • 307,619
  • 61
  • 472
  • 533
  • 2
    "never do this": I agree. I was answering the second part (which you do more precisely), but your reminder is useful. +1 – VonC Dec 26 '12 at 09:53
  • Very important!!!!You should save the file as C:\Users\\.ssh\id_rsa to make Git use it. "id_rsa". If you give any other name to your ssh file (which is what I was doing, IT WILL NOT WORK WITH GIT!!!) – SSG Oct 31 '19 at 14:52
4

You need:

Community
  • 1
  • 1
VonC
  • 1,042,979
  • 435
  • 3,649
  • 4,283
  • 2
    And to be very sure that your client has legal permission to pass along his or her key and let you in if they are not the owner. Looks like trouble to me. – bmargulies Dec 26 '12 at 02:15
0

Just copy and paste below code in a bat file and execute it

echo y|"C:\Program Files (x86)\PuTTY\plink.exe" root@XXX.XXX.XXX.XXX -pw XXXX exit

XXX.XXX.XXX.XXX : This is IP Address of your device.

XXX : This is password of your device

kki
  • 1
  • 2