Re: [PATCH] git-sh: Avoid sourcing scripts with git --exec-path

2017-09-29 Thread Dridi Boukelmoune
regression in my setup. I didn't know I was doing it wrong ;) snip > Another possible motivation (the one that led me to use this mechnism > long ago) is avoiding providing the dashed form git-$cmd in $PATH. I > think time has shown that having git-$cmd in $PATH is not too painful. In

[PATCH] git-sh: Avoid sourcing scripts with git --exec-path

2017-09-28 Thread Dridi Boukelmoune
For end users making use of a custom exec path many commands will simply fail. Adding git's exec path to the PATH also allows overriding git-sh-* scripts, not just adding commands. One can then patch a script without tainting their system installation of git for example. Signed-off-by: Dridi