Setting an SSH preference after installation #3451
-
When installing Git For Windows via the installer, you have an option to choose if Git For Windows should use its built-in SSH provider, or an external SSH provider. There's no clear setting in |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
This is the "business logic" of that toggle. It deletes the files originating from the There is no easy way to replicate the exact logic in Portable Git. But you can emulate to a certain extent it by deleting the relevant files from |
Beta Was this translation helpful? Give feedback.
This is the "business logic" of that toggle. It deletes the files originating from the
openssh
package that were bundled with Git for Windows.There is no easy way to replicate the exact logic in Portable Git. But you can emulate to a certain extent it by deleting the relevant files from
/usr/bin/
:rm /usr/bin/{scp,sftp,ssh*}.exe
.