On Sun, May 02, 2010 at 03:43:05PM +0200, Michael J Gruber wrote: > > I don't have anything against the concept, but "--heads" is a horrible > > name, as it implies refs/heads (which is of course what --branches does. > > Yikes!). I know why you picked it, and once you think about it, yes, it > [...] > > does make some sense (it is all the local and remote heads), but I am > > worried that it will cause confusion. > > So, your alternative suggestion is...? ;) I have to criticize _and_ suggest? Sheesh. > How about --tips? But I don't like that. I don't like it either. Really, "--branches" is a reasonable description of what you are providing, but that is already taken. :) I can't think of another place in git where we collectively refer to local and remote branch heads by a single term. The closest is git-branch's "-a". You could do "--all-branches", but this was meant to save some typing, so it probably fails on that count. The problem with things like --tips, --heads, or --branches, is that there is nothing to say "I mean _both_ local and remote" as opposed to just local. And I'm not sure there is a way to say that without getting long. I guess "--all-heads" is shorter, but still ugly. > We really use head as the term for the tip (ordered end-vertex) of a > branch, be it local or remote. Yeah. Originally both of those things were in refs/heads/, but the "separate remote" layout has been standard for some time. Even Junio may have switched by now. :) > I would hope that ordinary users do not have to deal with the layout under > refs, and thus won't be confused. But people peel and poke everywhere > where there not supposed to :) I think refs/heads is something many git users know about. Git was designed from the start to have a simple data model, and that model (including things like ref naming) was always exposed to the user. That's what makes it so flexible, and of course is what makes many people complain. These days that data model is a little more hidden, but I think you do still see the refs hierarchy. Certainly users see "remotes/" (e.g., in "git branch -a"), though perhaps they don't necessarily realize how it relates to refs/ and refs/heads/. Full ref names are also used for disambiguation, though I suppose most people never need to deal with that. But the first time one runs "git for-each-ref" (I know, I manage to work it into every conversation, right?) you get full exposure. -Peff -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html