Eric Sunshine <sunshine@xxxxxxxxxxxxxx> writes: > On Wed, Sep 19, 2018 at 6:25 PM Alexander Mills > <alexander.d.mills@xxxxxxxxx> wrote: >> The following command sequence exits with 1, and no stderr >> >> base='remotes/origin/dev'; >> fork_point="$(git merge-base --fork-point "$base")"; >> >> I cannot figure out why it's exiting with 1, but there is no stdout/stderr > > Unable to reproduce the problem. Perhaps you can provide more context. Well, reading builtin/merge-base.c::handle_fork_point(), I think the intended behaviour is: - die() when input is not well formed (e.g. bad commit object, ambigous ref name, etc.); there is an error worth reporting in this case. - show one that used to sit at the tip of the ref, if exists, and signal success with exit status 0; there of course is no error in this case. - if there is no such fork point found, signal failure with exit status 1; nothing is written to the standard output as there is no fork point to be shown, and nothing is written to the standard error. I do not think the code considers the last case as an error, i.e. it is just as natural not to have any fork point, as there is one. It might be OK to teach the command to say "no fork point found" to the standard error under "--verbose" mode in the last case, but since the command does not take --verbose or --quiet, I have a feeling that everything is working as designed.