Reputation: 461
I am able to use git from my windows terminal since i have added git to its PATH. I can do "git pull", "git push" etc. straight from the terminal, but i somehow can't use the ssh feature, which only works in the git bash terminal. Is it possible to use the git bash "ssh" command in the windows terminal? if so, how?
Upvotes: 2
Views: 2530
Reputation: 7735
On my computer, ssh is located in C:\Program Files (x86)\Git\bin\ssh.exe . However, that is the same location as git.exe, so if you system is the same, your PATH reference should work.
Alternatively, you could download any of the many Windows based ssh clients . I like putty, but any of them will do.
Upvotes: 1