On 2022-01-14 at 19:57:17, Ævar Arnfjörð Bjarmason wrote: > > On Thu, Jan 13 2022, Junio C Hamano wrote: > > > Teng Long writes: > > > >> +test_must_fail 'Exchange the order of "--heads" and ' ' > >> + git --version && > >> + git init "test.git" && > >> + test_commit -C "test.git" one && > >> + git -C "test.git" ls-remote --heads ./. > result.1 && > >> + git -C "test.git" ls-remote ./. --heads > result.2 && > > > > I would say that this is working exactly as designed. As with the > > unix tradition, after the command name, first come options > > (e.g. "--heads", "-v", etc. that begin with a dash or two dashes), > > then arguments like "origin", "master", "." that are not dashed > > options/flags. > > > > Then among the arguments, we generally take revs first and then > > pathspecs. "git help cli" explicitly mentions this, because it is > > specific to "git" command suite, but it does not mention "dashed > > options/flags first and then args", primarily because, at least back > > when the documentation was written, this was taken as granted, iow, > > those who wrote the "gitcli" documentation thought it was a common > > knowledge among users that did not need to be spelled out. > > > > Apparently, it is not a common knowledge at least for you (and > > probably others). Perhaps we should add a paragraph to the cli help > > and explicitly mention "options first and then args", before we go > > on to say "among args, revs first and then pathspecs". > > I don't think this summary is accurate. > > We have multiple commands that are in GNU-fashion loose about whether > you provide options first before no-option args, or after. E.g. we > accept both of: > > git push --dry-run > > And: > > git push --dry-run > > The "tradition" you're referring to accurately summarizes how POSIX > specifies that things should work. > > But when GNU came around its option parser was generally happy to accept > options and args in either order. E.g. these both work with GNU > coreutils, but the latter will fail on FreeBSD and various other > capital-U UNIX-es: > > touch foo; rm -v foo > touch foo; rm foo -v Yes, POSIX specifies this is how it should work because it avoids ambiguity. According to POSIX, -v is a file, and that's a valid name on Unix. If GNU rm fails to delete that file or provide a diagnostic about why it didn't, that's a bug. In some cases, we do allow the GNU behavior of providing options anywhere on the command line, but we don't when it causes ambiguity, like in this case. I think we should document the current behavior, but I also think it's a given when working on Unix because many tools don't work that way. For example, test and find don't permit arbitrary location of options and arguments and they are found on all Unix systems. You can't write "test foo -f". And to prove that this is ambiguous, I provide you the following example: $ git update-ref refs/heads/--symref HEAD $ git ls-remote . --symref 1ffcbaa1a5f10c9f706314d77f88de20a4a498c2 refs/heads/--symref That prints something very different if I write "git ls-remote --symref .". And it is actually the case that people write this kind of syntax in scripts relying on the current behavior and then those scripts get used in a variety of situations with arbitrary ref names, so this should continue to work this way. I believe a former employer may have these kinds of scripts, for example. I'm not opposed to us building new tools which support the GNU behavior, but I don't think we should change tools where we have the existing behavior because it does lead to breakage in some scripting situations. -- brian m. carlson (he/him or they/them) Toronto, Ontario, CA