aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-04-08 23:23:17 -0700
committerJunio C Hamano <gitster@pobox.com>2009-04-08 23:23:17 -0700
commit197cf8d59c0109f486ed6b56512b3c54ea44dccd (patch)
tree5d5b49d0c8c825065657789dd23eefbe45195f25
parent0122cf6611f0963a7aa72592da18013c3584557e (diff)
parent150115aded2e1e0a83db7366f59e4b5bf1aa8135 (diff)
downloadgit-197cf8d59c0109f486ed6b56512b3c54ea44dccd.tar.gz
git-197cf8d59c0109f486ed6b56512b3c54ea44dccd.tar.xz
Merge branch 'jc/maint-1.6.0-diff-borrow-carefully' into maint
* jc/maint-1.6.0-diff-borrow-carefully: diff --cached: do not borrow from a work tree when a path is marked as assume-unchanged
-rw-r--r--diff.c10
-rwxr-xr-xt/t4020-diff-external.sh8
2 files changed, 17 insertions, 1 deletions
diff --git a/diff.c b/diff.c
index 37f99209a..4f980aded 100644
--- a/diff.c
+++ b/diff.c
@@ -1759,7 +1759,8 @@ static int reuse_worktree_file(const char *name, const unsigned char *sha1, int
struct stat st;
int pos, len;
- /* We do not read the cache ourselves here, because the
+ /*
+ * We do not read the cache ourselves here, because the
* benchmark with my previous version that always reads cache
* shows that it makes things worse for diff-tree comparing
* two linux-2.6 kernel trees in an already checked out work
@@ -1800,6 +1801,13 @@ static int reuse_worktree_file(const char *name, const unsigned char *sha1, int
return 0;
/*
+ * If ce is marked as "assume unchanged", there is no
+ * guarantee that work tree matches what we are looking for.
+ */
+ if (ce->ce_flags & CE_VALID)
+ return 0;
+
+ /*
* If ce matches the file in the work tree, we can reuse it.
*/
if (ce_uptodate(ce) ||
diff --git a/t/t4020-diff-external.sh b/t/t4020-diff-external.sh
index f8c99f1a9..072000128 100755
--- a/t/t4020-diff-external.sh
+++ b/t/t4020-diff-external.sh
@@ -152,4 +152,12 @@ test_expect_success 'external diff with autocrlf = true' '
test $(wc -l < crlfed.txt) = $(cat crlfed.txt | keep_only_cr | wc -c)
'
+test_expect_success 'diff --cached' '
+ git add file &&
+ git update-index --assume-unchanged file &&
+ echo second >file &&
+ git diff --cached >actual &&
+ test_cmp ../t4020/diff.NUL actual
+'
+
test_done