Hi Junio, On Sat, 5 Aug 2017, Junio C Hamano wrote: > Michael Forney <mforney@xxxxxxxxxxx> writes: > > > This way, they still work even if the built-in symlinks aren't > > installed. > > > > Signed-off-by: Michael Forney <mforney@xxxxxxxxxxx> > > --- > > It looks like there was an effort to do this a number of years ago (through > > `make remove-dashes`). These are just a few I noticed were still left in the > > .sh scripts. > > Thanks for working on this. > > Have you made sure that all of these scripts, before calling > 'git-foo' in the current code, update their PATH so that these found > in the bog standard place (i.e. GIT_EXEC_PATH)? The scripts do not update their PATH. `git` does, before they are called. For example, if you call `git stash`, the `git` executable will first figure out that `stash` is not a builtin (unless you run with the experimental patch series that still has not seen much review, more is the shame, including on myself), and then call the dashed form. At this point, `git` will already have added the exec path to the PATH variable so that `git-stash` is found. So then `git-stash` runs, and does not even need to take pains to adjust the PATH variable again! Magic! ;-) Ciao, Dscho