How to solve TortoiseGitPlink Fatal Error? [closed]
I opened TortoiseGit > Settings > Network and in section SSH client: I changed ssh.exe instead of TortoiseGitPlink.exe. Now it works fine.
I opened TortoiseGit > Settings > Network and in section SSH client: I changed ssh.exe instead of TortoiseGitPlink.exe. Now it works fine.
Try setting standard output redirection before starting the process. process.StartInfo.RedirectStandardOutput = true; process.Start();
Since PuTTY 0.71 you get that prompt for security purposes, when you login in an interactive mode. See PuTTY vulnerability vuln-auth-prompt-spoofing. To use a batch mode, use -batch switch. That way you not only get rid of that prompt. It will also make sure the command does not hang on various other prompts that may … Read more
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: Set the environment variable GIT_SSH to the location of plink.exe Run pageant.exe and load your private key On 64 bit Windows, the default location for plink is C:\Program Files … Read more
The Pageant can load keys in the PuTTY format (.ppk) only. If you attempt to load a key in a different format, still recognized by PuTTY tools, you get the mentioned error message: Couldn’t load this key (OpenSSH-SSH-2 private key) You need to use the PuTTYgen to convert the key from the OpenSSH format to … Read more
For those of you who are setting up MSYS Git on Windows using PuTTY via the standard command prompt, the way to add a host to PuTTY’s cache is to run > plink.exe <host> For example: > plink.exe codebasehq.com The server’s host key is not cached in the registry. You have no guarantee that the … Read more