[WINDOWS] [Same problem with GIT(1) installed after TORTOISE SVN]
(1)not TortoiseGit but the Git development community version.
In git bash :
echo $GIT_SSH
was giving
GIT_SSH=C:\Program Files\TortoiseSVN\bin\TortoisePlink.exe
(Thanks to Răzvan Flavius Panda and Shahar Hamuzim Rajuan, above).
I had to change the value of GIT_SSH in the Windows system environment variables from
from C:\Program Files\TortoiseSVN\bin\TortoisePlink.exe
to C:\Program Files\Git\usr\bin\ssh.exe
(Before, I tried successfully in git bash to type :
export GIT_SSH='C:\Program Files\Git\usr\bin\ssh.exe'
So we could add this line in C:\Program Files\Git\etc\bash.bashrc for the change to be permanent.
Note that modifying GIT_SSH in C:\Program Files\Git\setup.ini fails)