On Fri, Mar 13, 2020 at 12:13:52PM +0000, Erlend Aasland wrote: > If rev-parse is called with both -q and an --is-* option, the result is > provided as the return code of the command, iso. printed to stdout. > > This simplifies using these queries in shell scripts: > git rev-parse --is-bare-repository && do_stuff > git rev-parse --is-shallow-repository && do_stuff I left some comments in the other part of the thread, but another potential downside here is that the exit code also tells us whether the command was unable to run for unrelated reasons (i.e., the answer is really a tristate: yes, no, or "we don't know the answer"). One obvious reason to exit non-zero would be that we're not in a repository at all. I _think_ that works OK with all of these conditionals, because if we're not in a repo, then we are obviously not inside a git-dir, and so on. Another reason is that the caller misspelled the option name. :) That might be an acceptable risk, though. It's not like it isn't present in other commands, probably people are doing: test "$(git rev-parse --is-whatever") = "true" && do_stuff anyway, which has the same problem. Though perhaps the simplicity there is an argument that we don't need the new exit-code mechanism. -Peff