summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2010-07-09 00:27:43 (GMT)
committerJunio C Hamano <gitster@pobox.com>2010-07-09 00:27:43 (GMT)
commitb1f47514f207b0601de7b0936cf13b3c0ae70081 (patch)
tree351921dd5f5bec0f58804cd94f426006f81b6c38 /t
parent29981380d03ffa63765dbeaea53a7ac9e8d6bc4f (diff)
downloadgit-b1f47514f207b0601de7b0936cf13b3c0ae70081.zip
git-b1f47514f207b0601de7b0936cf13b3c0ae70081.tar.gz
git-b1f47514f207b0601de7b0936cf13b3c0ae70081.tar.bz2
Fix "read-tree -m A B" priming the cache-tree
In 456156d a shortcut to priming the index tree reference was introduced, but the justification for it was completely bogus. "read-tree -m A B" is to take the index (and the working tree) that is largely based on (but does not have to match exactly) A and update it to B, while carrying the local change that does not overlap the difference between A and B, so there is no reason to expect that the resulting index should match the tree B. Noticed and test provided by Heiko Voigt. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-xt/t1001-read-tree-m-2way.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/t/t1001-read-tree-m-2way.sh b/t/t1001-read-tree-m-2way.sh
index 271bc4e..6e3b601 100755
--- a/t/t1001-read-tree-m-2way.sh
+++ b/t/t1001-read-tree-m-2way.sh
@@ -392,4 +392,20 @@ test_expect_success \
git ls-files --stage | tee >treeMcheck.out &&
test_cmp treeM.out treeMcheck.out'
+test_expect_success '-m references the correct modified tree' '
+ echo >file-a &&
+ echo >file-b &&
+ git add file-a file-b &&
+ git commit -a -m "test for correct modified tree"
+ git branch initial-mod &&
+ echo b >file-b &&
+ git commit -a -m "B" &&
+ echo a >file-a &&
+ git add file-a &&
+ git ls-tree $(git write-tree) file-a >expect &&
+ git read-tree -m HEAD initial-mod &&
+ git ls-tree $(git write-tree) file-a >actual &&
+ test_cmp expect actual
+'
+
test_done