On Thu, May 06 2021, Felipe Contreras wrote: > Ævar Arnfjörð Bjarmason wrote: >> On Thu, May 06 2021, Felipe Contreras wrote: First of all, I think we're in rather violent agreement about the real matter at hand here, and are at best talking about the design of the keychain for the bikeshed... >> > If you use natural language: >> > >> > 1. Git, switch to a new branch >> > >> > 2. Git, switch, create, branch >> > >> > One of these simply flows, the other is complete gibberish. I think >> > anyone familiar with English can identify which is which. >> >> Well, there's "Git, create a new branch and switch to it" > > Which command is that? > > git create branch --checkout? > > I'm following the order of the words from left to right. I'm just pointing out that git in general and certainly not the *nix tradition it follows tries to make commands readable in anything like English sentence order. If you attempt to read "log", "status", "rebase" etc. commands like that you'll at best end up sounding somewhat like Yoda. >> Also, there's the verb "make" in common use in git's command set >> e.g. git-mktag, git-mktree, as well as mkdir(1), mkfifo(1) etc. > > Sure, although I wouldn't consider them main commands. I for one never > use them. > >> In any case, unless we're talking about rewamping git's entire command >> set (e.g. having a git-newtree or whatever) I'd like to think that it's >> more productive to focus on making the commands/switches we have >> internally consistent when possible, which is what I'm advocating in the >> E-Mail that started this sub-thread. > > But we are talking about a new command, it is precisely at this point we > need to think about what could have been if mistakes of the past had not > happened. > > We should not repeat past mistakes without a very good reason. > > I don't think we should seek consistency for consistency's sake. Sure, > consistency is good, but it's only one of many considerations. > > In this case however we have a rare occasion in which both consistency and > natural language meet, we should not squander it. > > In fact, to be even more consistent we could add a -n option to git > branch, which would be reduntant but more explicit, like --list. Indeed, I agree with all of that. I.e. we should move to "switch" to "-n" instead of "-c" etc., and add a "-n" to "branch" for consistency. After all that's my upthread proposal... I just don't think it's worth trying to make the argv readable as a sentence, even if we had no backwards compatibility to worry about.