"Takuya N via GitGitGadget" <gitgitgadget@xxxxxxxxx> writes: > From: Takuya Noguchi <takninnovationresearch@xxxxxxxxx> > > The notation <commit> can be misunderstandable only for commit SHA1, Let's step back a bit. When our documentation says $ git log <commit> we expect that the readers to understand that all of the following are accepted: $ git log master $ git log master~10 $ git log 3868ac720f $ git log 3868ac720f7a26f3241f43764d0dc790ec55238f What gave you the impression that only the last one is valid? We need to fix _that_. The side discussion we had with Dscho touched another important point (i.e. when a command wants to take a commit but a user gives it a tag that points at a commit, the command almost always accepts the tag, finds the commit the tag points at, and uses that commit instead of the tag---we often mark such a parameter that expects commit but does not have to name a commit object <commit-ish>), but it is more or less orthogonal. All of these are accepted, $ git log v2.25.0 $ git log 61e952148 $ git log 61e9521487999585dc2b8f27c2a65226fb531a07 not just the last one. > but merge-base accepts any commit references. Like rev-parse, the name > of arguments should be <rev> instead of <commit>. And "like rev-parse" is a poor justification. It is a lowest-level command that was written in dark ages, and the language used in the documentation hasn't been updated to more modern terms. Back then, we said "revision" (and "rev" is a short for it) and the term was invented to mean commit (see "$ git help glossary") but was used loosely and more-or-less interchangeably with "object name" (in other words, when the speaker who said "rev" did not necessarily mean to limit the reference to commits, the word did not limit itself to commit-ish but also covered trees and blobs). Now, in the context of "git rev-parse", $ git rev-parse eacd13fab7e3 does make sense. It is OK to give it a short version of a tree object name (it is the tree of the commit pointed by the v2.25.0 release), so "git rev-parse <object-name>" (or "git rev-parse <rev>") would be OK. It is however a poor example to base our decision on how to explain merge-base. The command wants to _use_ two (or more) commits to work on, so like many other commands, when it is fed a tag, it tries to see if it points at a commit (and barfs if it does not) and use that commit instead. In other words, it takes commit-ish. Saying that it takes <commit> is *not* so bad, but changing it to <rev> is a move backwards, I'd have to say. Thanks for working on it, but s/ref/rev/ is not a good change.