Git app installation on Windows

I have installed git and git-annex on Windows 8 for use with git bash. git is fine, but git bash could not find the git app. I restarted my computer and now when it turns on, a message appears stating that it cannot find git-annex-autostart.vbs

. However, the file is indeed on the path the script is running looking for ( C:\Program Files (x86)\Git

). Any suggestions?

+3


source to share


1 answer


The answer was found: you had to find git-annex.exe

(find the folder cmd

in your installation git

) and add to PATH:



$ export PATH=$PATH:/c/Program\ Files\ \\(x86\\)/Git/cmd/./

      

+2


source







All Articles