Use Git bash ssh tools on Windows from cmd

I needed ssh functionality for Windows cmd when using Git, but I do not want to use git bash. It turns out the git bash ssh tools also work from cmd. All you have to do is add the bin directory they are in to your path.

set path=%path%;"C:\Program Files\Git\usr\bin"

That’s it.

Leave a comment