I can
git add.
git commit -m "first commit"
but cannot push
git push -u origin master
error:
cannot spawn C:\Users\SEB\Downloads\plink.exe: No such file or directory fatal: unable to fork
I can
git add.
git commit -m "first commit"
but cannot push
git push -u origin master
error:
cannot spawn C:\Users\SEB\Downloads\plink.exe: No such file or directory fatal: unable to fork
First ensure that you have an installed plink.exe. I recommend to install it to Program Files because your folder C:\Users\SEB\Downloads\
is a bad place.
Then check your environment variable GIT_SSH
. It should be something like:
GIT_SSH=%ProgramFiles(x86)%\PuTTY\plink.exe
or
GIT_SSH=%ProgramFiles%\PuTTY\plink.exe
This error also happened when there is a space in the GIT_SSH
environment variable.