]> git.ipfire.org Git - thirdparty/git.git/commitdiff
diff: --no-index should ignore the worktree
authorJunio C Hamano <gitster@pobox.com>
Sun, 10 Aug 2025 00:20:36 +0000 (17:20 -0700)
committerJunio C Hamano <gitster@pobox.com>
Sun, 10 Aug 2025 00:22:01 +0000 (17:22 -0700)
The act of giving "--no-index" tells Git to pretend that the current
directory is not under control of any Git index or repository, so
even when you happen to be in a Git controlled working tree, where
in that working tree should not matter.

But the start-up sequence tries to discover the top of the working
tree and chdir(2)'s there, even before Git passes control to the
subcommand being run.  When diff_no_index() starts running, it
starts at a wrong (from the end-user's point of view who thinks
"git diff --no-index" is merely a better version of GNU diff)
directory, and the original directory the user started the command
is at "prefix".

Because the paths given from argv[] have already been adjusted to
account for this path shuffling by prepending the prefix, and
showing the resulting path by stripping the prefix, the effect of
these nonsense operations (nonsense in the context of "--no-index",
that is) is usually not observable.

Except for special cases like "-", where it is not preprocessed by
prepending the prefix.

Instead of papering over by adding more special cases only to cater
to the no-index codepath in the generic code, drive the diff
machinery more faithfully to what is going on.  If the user started
"git diff --no-index" in directory X/Y/Z in a working tree
controlled by Git, and the start up sequence of Git chdir(2)'ed up
to directory X and left Y/Z in the prefix, revert the effect of the
start up sequence by chdir'ing back to Y/Z and emptying the prefix.

Reported-by: Gregoire Geis <opensource@gregoirege.is>
Helped-by: Ramsay Jones <ramsay@ramsayjones.plus.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/diff.c
t/t4053-diff-no-index.sh

index 9a89e25a982abb22277e953edac0b3c5cafa224f..0b23c41456837f41eb82c1a154ef30af74e11cbf 100644 (file)
@@ -487,6 +487,21 @@ int cmd_diff(int argc,
 
        init_diff_ui_defaults();
        repo_config(the_repository, git_diff_ui_config, NULL);
+
+       /*
+        * If we are ignoring the fact that our current directory may
+        * be part of a working tree controlled by a Git repository to
+        * pretend to be a "better GNU diff", we should undo the
+        * effect of the setup code that did a chdir() to the top of
+        * the working tree.  Where we came from is recorded in the
+        * prefix.
+        */
+       if (no_index && prefix) {
+               if (chdir(prefix))
+                       die(_("cannot come back to cwd"));
+               prefix = NULL;
+       }
+
        prefix = precompose_argv_prefix(argc, argv, prefix);
 
        repo_init_revisions(the_repository, &rev, prefix);
index 01db9243abfe4f38af2a988f9d753c14425fad3a..44b4b13f5d90e303e5408e3f376dabf666033200 100755 (executable)
@@ -26,6 +26,23 @@ test_expect_success 'git diff --no-index directories' '
        test_line_count = 14 cnt
 '
 
+test_expect_success 'git diff --no-index with -' '
+       cat >expect <<-\EOF &&
+       diff --git a/- b/-
+       new file mode 100644
+       --- /dev/null
+       +++ b/-
+       @@ -0,0 +1 @@
+       +frotz
+       EOF
+       (
+               cd a &&
+               echo frotz |
+               test_expect_code 1 git diff --no-index /dev/null - >../actual
+       ) &&
+       test_cmp expect actual
+'
+
 test_expect_success 'git diff --no-index relative path outside repo' '
        (
                cd repo &&