Reputation: 671
I know this question has been asked but i am really confused. I have installed git and my PATH variable looks like this
%Path%;%ANDROID_PLATFORM_TOOLS%;%ANDROID_TOOLS%;
C:\Users\Miserda\nodejs\npm;C:\android-sdk-win;
C:\Users\Miserda\AppData\Roaming\npm;
C:\Program Files (x86)\WinAnt\bin; C:\Program Files (x86)\Git\bin
and i don't understand how doesn't it recognize it??
Upvotes: 0
Views: 3193
Reputation: 1323793
The main issue seemed to come from the space between the ';' and the 'C:\' in the PATH
C:\Program Files (x86)\WinAnt\bin; C:\Program Files (x86)\Git\bin
^
Removing allows for git command to be recognized.
Upvotes: 1