aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPatrick Steinhardt <ps@pks.im>2026-01-13 10:54:33 +0100
committerJunio C Hamano <gitster@pobox.com>2026-01-13 05:41:16 -0800
commit6aeda3cf5b6d5c38e9b51f1f39133e23d0981d55 (patch)
tree5cf4aab21cd11086eb246e0aa824a702a657bdda /Makefile
parent1454743eb84eea1f7e4ea23e0556ed5ef9888894 (diff)
downloadgit-6aeda3cf5b6d5c38e9b51f1f39133e23d0981d55.tar.xz
builtin/replay: move core logic into "libgit.a"
Move the core logic used to replay commits into "libgit.a" so that it can be easily reused by other commands. It will be used in a subsequent commit where we're about to introduce a new git-history(1) command. Note that with this change we have no sign-comparison warnings anymore, and neither do we depend on `the_repository`. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index b7eba509c6..1c64a5d2ae 100644
--- a/Makefile
+++ b/Makefile
@@ -1285,6 +1285,7 @@ LIB_OBJS += repack-geometry.o
LIB_OBJS += repack-midx.o
LIB_OBJS += repack-promisor.o
LIB_OBJS += replace-object.o
+LIB_OBJS += replay.o
LIB_OBJS += repo-settings.o
LIB_OBJS += repository.o
LIB_OBJS += rerere.o