Re: [RFC/PATCH] worktree: replace "checkout --to" with "worktree new"
From: Duy Nguyen <hidden>
Date: 2016-06-15 23:05:35
On Tue, Jun 30, 2015 at 11:56 AM, Eric Sunshine [off-list ref] wrote:
The command "git checkout --to <path>" is something of an anachronism, encompassing functionality somewhere between "checkout" and "clone". The introduction of the git-worktree command, however, provides a proper and intuitive place to house such functionality. Consequently, re-implement "git checkout --to" as "git worktree new". As a side-effect, linked worktree creation becomes much more discoverable with its own dedicated command, whereas `--to` was easily overlooked amid the plethora of options recognized by git-checkout. Signed-off-by: Eric Sunshine <redacted> --- I've long felt that Duy's linked-worktree functionality was a bit oddly named as "git checkout --to", but, since I could never come up with a better name, I never made mention of it. However, with Duy's introduction of the git-worktree command[1], we now have a much more appropriate and discoverable place to house the "git checkout --to" functionality, and upon seeing his patch, I was ready to reply with the suggestion to relocate "git checkout --to" to "git worktree new", however, Junio beat me to it[2].
Didn't know you guys were so eager to move this code around :D Jokes aside, it's good that it's raised now before --to is set in stone. I think this is like "git checkout -b" vs "git branch". We pack so many things in 'checkout' that it's a source of both convenience and confusion. I never use "git branch" to create a new branch and if I had a way to tell checkout to "move away and delete previous branch", I would probably stop using "git branch -d/-D" too. "--to" is another "-b" in this sense. "git worktree new" definitely makes sense (maybe stick with verbs like "create", I'm not sure if we have some convention in existing commands), but should we remove "git checkout --to"? I could do "git co -b foo --to bar" for example. Maybe "--to" is not used that often that "git worktree new" would feel less convenient as a replacement. If we are not sure about "--to" (I'm not), I think we just remove it now because we can always add it back later.
quoted hunk ↗ jump to hunk
diff --git a/Documentation/git-worktree.txt b/Documentation/git-worktree.txt index 41103e5..8f13281 100644 --- a/Documentation/git-worktree.txt +++ b/Documentation/git-worktree.txt@@ -9,16 +9,85 @@ git-worktree - Manage multiple worktrees SYNOPSIS -------- [verse] +'git worktree new' [-f] <path> [<checkout-options>] <branch>
Should we follow clone syntax and put the <path> (as destination)
after <branch> ("source")? Maybe not, because in the clone case,
explicit destination is optional, not like this.. Or.. maybe <branch>
could be optional in this case. 'git worktree new' without a branch
will create a new branch, named closely after the destination.
Existing branch can be specified via an option..
--
Duy