50

I'm trying to configure Git to use Plink. It worked for me many times before. Now, for some reason, this option isn't available to me (it is disabled):

Git Setup Plink option screenshot

I tried uninstalling and reinstalling Git a hundred times. Nothing. I can't get to this option enabled.

trejder
  • 17,148
  • 27
  • 124
  • 216
Terminal58
  • 547
  • 1
  • 4
  • 6
  • Are you sure that the environment variable is being set correctly for the process? You can install Process Explorer and use it to examine an already running program. – TerryP Jun 06 '10 at 17:18
  • I'm not getting the option to set the variable – Terminal58 Jun 06 '10 at 17:20
  • 2
    What did that screenshot show? Could someone either take a new one or describe it in words? – SamB Oct 14 '11 at 20:17
  • It's been over two years since I asked this but I think the image was identical to the one jhcaiced posted. I was just showing what my install didn't show me. – Terminal58 Oct 10 '12 at 06:09

6 Answers6

65

I just had this problem (with a newer version of Git, 1.7.9). I used the answer from VonC, but only a couple of steps were needed:

  1. Set the environment variable GIT_SSH to the location of plink.exe
  2. Run pageant.exe and load your private key

On 64 bit Windows, the default location for plink is C:\Program Files (x86)\GitExtensions\PuTTY\plink.exe The spaces in the path no longer seem to be a problem.

Macke
  • 24,812
  • 7
  • 82
  • 118
andypaxo
  • 6,171
  • 3
  • 38
  • 53
  • Worked fine and (assuming you know where to set environment vars) is much easier than reinstalling. – amenthes Apr 02 '15 at 14:02
  • Spaces in the path is still a problem. A workaround is to use a short file name which doesn't contains spaces. One can get a short file name using following command: `cmd /c for %A in ("c:\Path\ to\ file") do @echo %~sA`. – neverov Aug 11 '15 at 09:56
  • 1
    @neverov I solved the spaces issue by creating a link. c:\apps is a pre-exisiting directory on my PC, you can replace this by any directory you like. **Execute following as administrator** `mklink /j /d c:\apps\putty "c:\Program Files (x86)\PuTTY"` **Execute regular user** `set GIT_SSH=c:\apps\putty\plink.exe` **To test ssh authentication I used** `c:\apps\putty\plink -v git@github.com` – carl verbiest Aug 13 '16 at 09:25
  • I had to additionally manually acknowledge/add the server's key into cache by typing ```plink github.com``` hitting y and then Ctrl-C. Clone worked afterwards – Konrads Nov 14 '16 at 14:37
51

This is an old question, and I just have the same problem, just to be sure I will write down the solution that worked for me.

  • The msysgit installer didn't show the screen that allows to select between the openssh client and the Tortoise (plink)

  • The solution is to install Putty (or Tortoise Plink I guess), create and save at least one session, just installing Putty didn't work, the session must be created, the installer does some weird check about that.

  • When you run the Git installer again, the screen should appear.

enter image description here

jhcaiced
  • 716
  • 8
  • 11
22

This looks like issue 368

When I updated the install never asked if I wanted to use PLink.
Now Git continues to look for an OpenSSH key. Git could not find my putty key.

I have tried loading my putty private key and reinstalling Git. No matter what I do I can't get Git to use my putty plink data and private key.

This has a workaround (issue 367)

1) making sure that plink is in PATH
2) Saving settings for one putty session (doesn't matter which one)

and by doing those before installing git.


Even with that process, it is not easy:

I was finally able to get GIT to work with Plink.

One comment:
I did start a Plink session before installing GIT. Even with a Plink session running I never able to get the installer to recognize PLink was running.

My work around:

  1. I finally just installed GIT 1.6.5.1.
  2. I changed the Plink path to removes spaces. I changed the directory from: c:\program files\putty to c:\putty.
  3. I set the environment variable GIT_SSH to the new path. c:\putty\plink.exe.

With these changes GIT is now functioning properly.


Janusz Skonieczny adds in the comments:

To setup this quickly run PowerShell as admin:

[Environment]::SetEnvironmentVariable("GIT_SSH", "D:\your_path_here\plink.exe", "User")

Update March 2017, for Git 2.13 (Q2 2017)

Git now auto-detects the ssh you need (openssh or plink), but you can force that detection with ss.variant.

See commit dd33e07 (01 Feb 2017), and commit e9d9a8a (02 Jan 2017) by Segev Finer (segevfiner).
See commit e2824e4 (01 Feb 2017) by Johannes Schindelin (dscho).
See commit 6a4f3a9 (26 Jan 2017) by Junio C Hamano (gitster).
(Merged by Junio C Hamano -- gitster -- in commit be6ab59, 27 Feb 2017)

ssh.variant:

Depending on the value of the environment variables GIT_SSH or GIT_SSH_COMMAND, or the config setting core.sshCommand, Git auto-detects whether to adjust its command-line parameters for use with plink or tortoiseplink, as opposed to the default (OpenSSH).

The config variable ssh.variant can be set to override this auto-detection;
valid values are ssh, plink, putty or tortoiseplink.
Any other value will be treated as normal ssh.
This setting can be overridden via the environment variable GIT_SSH_VARIANT.

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
  • 10
    The highlights: avoid spaces in path to `plink.exe`; point `GIT_SSH` at plink. – SamB Oct 14 '11 at 20:15
  • Why isn’t plink in your `PATH`? `GIT_SSH=plink` works fine for me :-p – binki Aug 17 '14 at 00:26
  • @binki because I had several plink (one with putty, one with GoW (https://github.com/bmatzelle/gow/wiki), and I wanted to be sure to reference the one I wanted. – VonC Aug 17 '14 at 05:13
  • To setup this quickly run PowerShell as admin: `[Environment]::SetEnvironmentVariable("GIT_SSH", "D:\your_path_here\plink.exe", "User")` – Janusz Skonieczny Apr 20 '15 at 10:30
  • @JanuszSkonieczny Good point. I have included your comment in the answer for more visibility. – VonC Apr 20 '15 at 10:32
2

If you are using TortoiseGit, you can permanently configure its plink. Of course use correct path on your machine.

setx GIT_SSH "C:\Program Files\TortoiseGit\bin\TortoiseGitPlink.exe"
user3042599
  • 517
  • 4
  • 5
1

I used for many years the solution with GIT_SSH environment variable, but sometime this year it stopped working (after update of git bash or putty toolkit). I've found current working soultion. First, your pageant must be running. Second you must start ssh agent, but the windows one:

eval `ssh-pageant`

It is windows equivalent of what unix users know:

eval `ssh-agent`

To add keys you can use ssh-add or Pagenant UI window.

midlan
  • 144
  • 8
0

This is what I did to fix it on my machine (Windows 10 Pro x64) in January 2023.

1 & 2) Configured TortoiseGit (in its settings... Network >> SSH >> SSH client) and Git (the GIT_SSH environment variable) to both use     C:\Program Files\PuTTY\plink.exe without quotation marks.

3 & 4) Set up both Pageant and ssh-add agent to auto-start (I used the ssh agent script from https://docs.github.com/en/authentication/connecting-to-github-with-ssh/working-with-ssh-key-passphrases and use my private key.

bblackmoor
  • 91
  • 1
  • 3