Recent Posts
- (02/24) Calling an Element from a Helper TAGS:CakephpWeb ProgrammingUsageTutorialExample
- (10/14) Forcing A Single Join in CakePHP PaginationTAGS:CakephpCakephp 13DatabaseErrorsHabtmMysqlMssqlWeb ProgrammingUsage
- (08/11) Inserting NOW() into MySQL Using CakePHPTAGS:CakephpDatabaseMysqlMssqlWeb ProgrammingUsage
- (08/07) Best PaginateCount for CakePHP - with Group By SupportTAGS:CakephpBehaviorsWeb ProgrammingUsageDatabaseExampleMysqlHabtmHack
- (04/03) CakePHP Error Messages Not Showing on FormTAGS:CakephpCakephp 13Web ProgrammingErrorsUsage
- (02/06) Sorting Paginated Results Using a Related Model Field in CakePHPTAGS:CakephpWeb ProgrammingUsageExample
- (11/02) Changing CakePHP's Model useTable on the FlyTAGS:CakephpWeb ProgrammingMysqlDatabaseExampleTutorial
- (10/18) The Funniest Error Message Ever - Thank You EclipseTAGS:EclipseWeb ProgrammingErrorsHumorWindowsUsageSoftwarePhpCakephp
Subscribe to my feed
MainelyDesign.com Blog
Using Git and Plink for SSH on Windows
Posted on 01/25/2010 at 11:11 am by Kevin Wentworth
Viewed 6,804 times | 0 comments
Well, I finally had an opportunity to install Git on Windows yet again. It had been quite a while since my last time installing Git on Windows, so I was a little rusty and couldn't figure out how to get Git to use Plink for SSH. It's actually quite simple and dependent on a Windows system variable.
Getting Git to use Plink for SSH on Windows
You need to create a system variable in Windows for GIT_SSH:
- Go to System Properties > Advanced Settings
- Click the button for Environment Variables
- Click 'New' to add a new system variable
- Under variable name, call it 'GIT_SSH'
- Under variable value, put in the path to your Plink executable: 'C:\Program Files\PuTTY\plink.exe'

- Click all the OKs until you are out of System Properties
- Git should now use Plink for SSH and not the built in ssh functionality
Setting up Putty, Plink and Pageant for Git on Windows
This post doesn't describe how to get Putty, Plink and Pageant working with Git on Windows, but I did come across an excellent Git tutorial (scroll to the bottom). It's probably the best tutorial for a non-techie that wants to install git on windows. It's actually illustrated!
Cheers,
-Kevin Wentworth
Tags for Using Git and Plink for SSH on Windows
Git | Windows | Usage | Tutorial
