On Windows 7, my .hgrc config file provides a nice an easy way to tell Mercurial about the private SSH key location with the following syntax:
[ui]
username = John Doe <jdoe@example.com>
ssh = plink.exe -i "C:\Users\jdoe\mykeys.ppk"
Does anyone knows what is the equivalent syntax for the .gitconfig file? All I can find so far is the GIT_SSH environment variable that does not seem to let me specify the private key location.
