summaryrefslogtreecommitdiff
path: root/commit.c
diff options
context:
space:
mode:
authorElijah Newren <newren@gmail.com>2020-12-16 22:27:59 (GMT)
committerJunio C Hamano <gitster@pobox.com>2020-12-17 05:56:39 (GMT)
commitb0ca120554be8d8f7faf98aa3b991441de76f5cf (patch)
tree2b77aee65ec174e812abc04053d38486c30a7f0e /commit.c
parentc5a6f65527aa3b6f5d7cf25437a88d8727ab0646 (diff)
downloadgit-b0ca120554be8d8f7faf98aa3b991441de76f5cf.zip
git-b0ca120554be8d8f7faf98aa3b991441de76f5cf.tar.gz
git-b0ca120554be8d8f7faf98aa3b991441de76f5cf.tar.bz2
commit: move reverse_commit_list() from merge-recursive
Signed-off-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'commit.c')
-rw-r--r--commit.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/commit.c b/commit.c
index f53429c..dc08a47 100644
--- a/commit.c
+++ b/commit.c
@@ -563,6 +563,17 @@ struct commit_list *copy_commit_list(struct commit_list *list)
return head;
}
+struct commit_list *reverse_commit_list(struct commit_list *list)
+{
+ struct commit_list *next = NULL, *current, *backup;
+ for (current = list; current; current = backup) {
+ backup = current->next;
+ current->next = next;
+ next = current;
+ }
+ return next;
+}
+
void free_commit_list(struct commit_list *list)
{
while (list)