From 2cc86882142d3f47a0104b8e702e86458df19130 Mon Sep 17 00:00:00 2001 From: tekkub Date: Sat, 20 Jun 2009 20:45:03 -0600 Subject: Tweak margins a little bit --- _posts/2009-06-17-troubleshooting-ssh.textile | 2 ++ 1 file changed, 2 insertions(+) (limited to '_posts') diff --git a/_posts/2009-06-17-troubleshooting-ssh.textile b/_posts/2009-06-17-troubleshooting-ssh.textile index abea65c..c5c6dee 100644 --- a/_posts/2009-06-17-troubleshooting-ssh.textile +++ b/_posts/2009-06-17-troubleshooting-ssh.textile @@ -54,7 +54,9 @@ See "this post":http://groups.google.com/group/github/browse_thread/thread/21fd0 Especially with cygwin-git+pageant+putty/plink, you might want to set GIT_SSH to your plink.exe location -- unless that doesn't work for you. In certain circumstances (perhaps after a service pack installation), you will find git network operations failing with this is because plink.exe running from your (cygwin-provided) git command "*can't talk with pageant to get its keys*":http://www.chiark.greenend.org.uk/~sgtatham/putty/wishlist/cygwin-clobbers-pageant.html . A solution is to set up a script that has:
/cygdrive/c/ntnot/plink.exe -i "c:\users\you\.ssh\key-file-for-github.ppk" $1 $2
+ and set GIT_SSH to point to this: +
declare -x GIT_SSH="c:\path\to\script"
This explicitly provides the key for plink to use, rather than have it talk with pageant. -- cgit v1.3.1