]> git.ipfire.org Git - thirdparty/git.git/commit - t/t2027-checkout-track.sh
checkout: improve error messages for -b with extra argument
authorRené Scharfe <l.s.r@web.de>
Sun, 24 May 2020 07:23:00 +0000 (09:23 +0200)
committerJunio C Hamano <gitster@pobox.com>
Sun, 24 May 2020 23:21:30 +0000 (16:21 -0700)
commitbb2198fb91ada94cfc6f8ec81b9dadcf3959fe10
tree362c4c74b87ae64dd97371de02c57d47f6582148
parent16ab794b8257dd08906994d5cccacfa3886aa543
checkout: improve error messages for -b with extra argument

When we try to create a branch "foo" based on "origin/master" and give
git commit -b an extra unsupported argument "bar", it confusingly
reports:

   $ git checkout -b foo origin/master bar
   fatal: 'bar' is not a commit and a branch 'foo' cannot be created from it

   $ git checkout --track -b foo origin/master bar
   fatal: 'bar' is not a commit and a branch 'foo' cannot be created from it

That's wrong, because it very well understands that "origin/master" is
supposed to be the start point for the new branch and not "bar".  Check
if we got a commit and show more fitting messages in that case instead:

   $ git checkout -b foo origin/master bar
   fatal: Cannot update paths and switch to branch 'foo' at the same time.

   $ git checkout --track -b foo origin/master bar
   fatal: '--track' cannot be used with updating paths

Original-patch-by: Jeff King <peff@peff.net>
Signed-off-by: René Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/checkout.c
t/t2018-checkout-branch.sh
t/t2027-checkout-track.sh