-
| I want to better understand how the settings for 'Adjusting your PATH environment' work within the confines of the bash.exe, i.e. what happens after installation when  In  Now, the end result in the Windows Environment Settings for the System  Based on that at least within non- Within the  PATH=/c/Users/win10vm/bin:/mingw64/bin:/usr/local/bin:/usr/bin:/bin:/mingw64/bin:/usr/bin:/c/Users/win10vm/bin:/c/Windows/system32:…:/c/Windows/System32/OpenSSH:…:/usr/bin/vendor_perl:/usr/bin/core_perl
ORIGINAL_PATH=/mingw64/bin:/usr/bin:/c/Users/win10vm/bin:/c/Windows/system32:…:/c/Windows/System32/OpenSSH:…When an  So, I understand that the  Now, I am wondering where the business logic for prefixing the values such as  | 
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
| That happens in  Remember that it's there so all the unix-ish programs get found before the windows programs of the same name. I'd expect many things to break (some in potentially subtle ways) if you remove this. | 
Beta Was this translation helpful? Give feedback.
That happens in
git-wrapper.c, look formy_path_append.Remember that it's there so all the unix-ish programs get found before the windows programs of the same name.
I'd expect many things to break (some in potentially subtle ways) if you remove this.