gsudo v1.3.0
Features
- Git-Bash/MinGW Improvements:
- Proper elevations of commands as bash commands (unless
-d
is specified)
For example:gsudo ls /etc/hosts
will elevatebash -c "ls /etc/hosts"
instead ofcmd /c ls.exe "C:/Program Files/Git/etc/hosts"
- Fixed algorithm to define which parent process will be the allowed cache root. #134
Still the Credentials Cache may not work in MinGW unless you add this function to your.bashrc
profile:
gsudo() { WSLENV=WSL_DISTRO_NAME:USER:$WSLENV MSYS_NO_PATHCONV=1 gsudo.exe "$@"; }
- Fixed issues with Shell detection. (7f9d55b)
- Disable Git-Bash/MinGW param translation on elevation(cd12fe4)
- Proper elevations of commands as bash commands (unless
Fixes
- WSL: Force reset color after gsudo ends. (b047df6)
- Fixed
gsudo
bash script missing on Chocolatey package (aebd731) - Show received command line in debug information when --debug is specified. (086777c)
Full Changelog: v1.2.0...v1.3.0