]> git.ipfire.org Git - thirdparty/git.git/commitdiff
checkout-index: drop error message from empty --stage=all
authorJeff King <peff@peff.net>
Tue, 27 Oct 2020 07:36:02 +0000 (03:36 -0400)
committerJunio C Hamano <gitster@pobox.com>
Tue, 27 Oct 2020 19:41:54 +0000 (12:41 -0700)
If checkout-index is given --stage=all for a specific path, it will try
to write stages 1-3 (if present) for that path to temporary files.
However, if the file is present only at stage 0, it writes nothing but
gives a confusing message:

  $ git checkout-index --stage=all -- Makefile
  git checkout-index: Makefile does not exist at stage 4

This is nonsense. There is no stage 4 (it's just an internal enum value
we use for "all"), and the documentation clearly states:

  Paths which only have a stage 0 entry will always be omitted from the
  output.

Here it's talking about the list of tempfiles written to stdout, but it
seems clear that this case was not meant to be an error. We even have a
test which covers it, but it only checks that the command reports an
exit code of 0, not its stderr. And it reports 0 only because of another
bug which fails to propagate errors (which will be fixed in a subsequent
patch).

So let's make the test more thorough. We'll also cover the case that we
found _no_ entry, not even a stage zero, which should still be an error.
However, because of the other bug, we'll have to mark this as expecting
failure for the moment.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/checkout-index.c
t/t2004-checkout-cache-temp.sh

index a854fd16e779123f7d39f685fa3b7eb7c1ba930e..195165d8bd0108236f4ab1ad59f58ec23a056921 100644 (file)
@@ -79,6 +79,14 @@ static int checkout_file(const char *name, const char *prefix)
                return errs > 0 ? -1 : 0;
        }
 
+       /*
+        * At this point we know we didn't try to check anything out. If it was
+        * because we did find an entry but it was stage 0, that's not an
+        * error.
+        */
+       if (has_same_name && checkout_stage == CHECKOUT_ALL)
+               return 0;
+
        if (!state.quiet) {
                fprintf(stderr, "git checkout-index: %s ", name);
                if (!has_same_name)
index a12afe93f32948dd994d55418ed93485757d2ba8..4308d698b9291f4bf5bd02332753784d6f934462 100755 (executable)
@@ -88,9 +88,17 @@ test_expect_success 'checkout all stage 2 to temporary files' '
        done
 '
 
+test_expect_failure 'checkout all stages of unknown path' '
+       rm -f path* .merge_* actual &&
+       test_must_fail git checkout-index --stage=all --temp \
+               -- does-not-exist 2>stderr &&
+       test_i18ngrep not.in.the.cache stderr
+'
+
 test_expect_success 'checkout all stages/one file to nothing' '
        rm -f path* .merge_* actual &&
-       git checkout-index --stage=all --temp -- path0 >actual &&
+       git checkout-index --stage=all --temp -- path0 >actual 2>stderr &&
+       test_must_be_empty stderr &&
        test_line_count = 0 actual
 '