On Thu, Jan 31, 2019 at 2:39 PM Eric Sunshine <sunshine@xxxxxxxxxxxxxx> wrote: > > diff --git a/builtin/clone.c b/builtin/clone.c > > @@ -491,7 +491,7 @@ static enum { > > static const char junk_leave_repo_msg[] = > > N_("Clone succeeded, but checkout failed.\n" > > "You can inspect what was checked out with 'git status'\n" > > - "and retry the checkout with 'git checkout -f HEAD'\n"); > > + "and retry the checkout with 'git switch -f HEAD'\n"); > > Just wondering if these uses of "checkout" and "checked out" need > adjustment. I don't have any good suggestions, though. I think I'm going to leave this message alone for now. Technically "git switch" can replace "git checkout" here but I feel this is more about restoring files on worktree than switching branches. So when "git restore" comes, I'll change it to say "git restore --from=HEAD :/" or something like that instead. -- Duy