Skip to content

Commit 5fc27aa

Browse files
authored
Merge pull request libgit2#5208 from mkostyuk/apply-removed-new-file
apply: git_apply_to_tree fails to apply patches that add new files
2 parents 6de4808 + 5498c31 commit 5fc27aa

File tree

2 files changed

+42
-3
lines changed

2 files changed

+42
-3
lines changed

src/apply.c

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -649,9 +649,12 @@ int git_apply_to_tree(
649649
for (i = 0; i < git_diff_num_deltas(diff); i++) {
650650
delta = git_diff_get_delta(diff, i);
651651

652-
if ((error = git_index_remove(postimage,
653-
delta->old_file.path, 0)) < 0)
654-
goto done;
652+
if (delta->status == GIT_DELTA_DELETED ||
653+
delta->status == GIT_DELTA_RENAMED) {
654+
if ((error = git_index_remove(postimage,
655+
delta->old_file.path, 0)) < 0)
656+
goto done;
657+
}
655658
}
656659

657660
if ((error = apply_deltas(repo, pre_reader, NULL, post_reader, postimage, diff, &opts)) < 0)

tests/apply/tree.c

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#include "clar_libgit2.h"
2+
#include "apply_helpers.h"
23
#include "../merge/merge_helpers.h"
34

45
static git_repository *repo;
@@ -56,3 +57,38 @@ void test_apply_tree__one(void)
5657
git_commit_free(b_commit);
5758
}
5859

60+
void test_apply_tree__adds_file(void)
61+
{
62+
git_oid a_oid;
63+
git_commit *a_commit;
64+
git_tree *a_tree;
65+
git_diff *diff;
66+
git_index *index = NULL;
67+
68+
struct merge_index_entry expected[] = {
69+
{ 0100644, "f51658077d85f2264fa179b4d0848268cb3475c3", 0, "asparagus.txt" },
70+
{ 0100644, "68f6182f4c85d39e1309d97c7e456156dc9c0096", 0, "beef.txt" },
71+
{ 0100644, "4b7c5650008b2e747fe1809eeb5a1dde0e80850a", 0, "bouilli.txt" },
72+
{ 0100644, "c4e6cca3ec6ae0148ed231f97257df8c311e015f", 0, "gravy.txt" },
73+
{ 0100644, "6370543fcfedb3e6516ec53b06158f3687dc1447", 0, "newfile.txt" },
74+
{ 0100644, "68af1fc7407fd9addf1701a87eb1c95c7494c598", 0, "oyster.txt" },
75+
{ 0100644, "94d2c01087f48213bd157222d54edfefd77c9bba", 0, "veal.txt" },
76+
};
77+
78+
git_oid_fromstr(&a_oid, "539bd011c4822c560c1d17cab095006b7a10f707");
79+
80+
cl_git_pass(git_commit_lookup(&a_commit, repo, &a_oid));
81+
82+
cl_git_pass(git_commit_tree(&a_tree, a_commit));
83+
84+
cl_git_pass(git_diff_from_buffer(&diff,
85+
DIFF_ADD_FILE, strlen(DIFF_ADD_FILE)));
86+
87+
cl_git_pass(git_apply_to_tree(&index, repo, a_tree, diff, NULL));
88+
merge_test_index(index, expected, 7);
89+
90+
git_index_free(index);
91+
git_diff_free(diff);
92+
git_tree_free(a_tree);
93+
git_commit_free(a_commit);
94+
}

0 commit comments

Comments
 (0)