зеркало из https://github.com/microsoft/git.git
Don't add parents to the commit list if we have already
seen them. Otherwise any merges will make the parent list explode.
This commit is contained in:
Родитель
64745109c4
Коммит
4056c09114
7
commit.c
7
commit.c
|
@ -124,8 +124,11 @@ struct commit *pop_most_recent_commit(struct commit_list **list)
|
|||
free(old);
|
||||
|
||||
while (parents) {
|
||||
parse_commit(parents->item);
|
||||
insert_by_date(list, parents->item);
|
||||
struct commit *commit = parents->item;
|
||||
if (!commit->object.parsed) {
|
||||
parse_commit(commit);
|
||||
insert_by_date(list, commit);
|
||||
}
|
||||
parents = parents->next;
|
||||
}
|
||||
return ret;
|
||||
|
|
Загрузка…
Ссылка в новой задаче