From: Junio C Hamano Date: Tue, 3 Jul 2012 17:01:22 +0000 (-0700) Subject: apply: --build-fake-ancestor expects blobs X-Git-Tag: v1.7.12-rc0~22^2~6 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=da3ac0c14993c5e8e41875cc3ead32be71647a7a;p=git.git apply: --build-fake-ancestor expects blobs The "index" line read from the patch to reconstruct a partial preimage tree records the object names of blob objects. Signed-off-by: Junio C Hamano --- diff --git a/builtin/apply.c b/builtin/apply.c index c24dc546d..8b2db1d76 100644 --- a/builtin/apply.c +++ b/builtin/apply.c @@ -3203,7 +3203,7 @@ static void build_fake_ancestor(struct patch *list, const char *filename) name = patch->old_name ? patch->old_name : patch->new_name; if (0 < patch->is_new) continue; - else if (get_sha1(patch->old_sha1_prefix, sha1)) + else if (get_sha1_blob(patch->old_sha1_prefix, sha1)) /* git diff has no index line for mode/type changes */ if (!patch->lines_added && !patch->lines_deleted) { if (get_current_sha1(patch->old_name, sha1)) diff --git a/t/t1512-rev-parse-disambiguation.sh b/t/t1512-rev-parse-disambiguation.sh index fbd3658ca..84b8dddbe 100755 --- a/t/t1512-rev-parse-disambiguation.sh +++ b/t/t1512-rev-parse-disambiguation.sh @@ -54,7 +54,7 @@ test_expect_success 'disambiguate tree-ish' ' git rev-parse --verify 000000000:a0blgqsjc ' -test_expect_failure 'disambiguate blob' ' +test_expect_success 'disambiguate blob' ' sed -e "s/|$//" >patch <<-EOF && diff --git a/frotz b/frotz index 000000000..ffffff 100644