diff options
author | Stephan Beyer <s-beyer@gmx.net> | 2008-07-09 14:58:57 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-07-10 00:26:29 -0700 |
commit | 5b2fd95606cd6d564f96d9d253e7cd19263bc352 (patch) | |
tree | 5c2741d770915f32256525a6ca5f03b098571b46 /Makefile | |
parent | builtin-rerere: more carefully find conflict markers (diff) | |
download | tgif-5b2fd95606cd6d564f96d9d253e7cd19263bc352.tar.xz |
rerere: Separate libgit and builtin functions
This patch moves rerere()-related functions into a newly created
rerere.c file.
The setup_rerere() function is needed by both rerere() and cmd_rerere(),
so this function is moved to rerere.c and declared non-static (and "extern")
in newly created rerere.h file.
Signed-off-by: Stephan Beyer <s-beyer@gmx.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -363,6 +363,7 @@ LIB_H += quote.h LIB_H += reflog-walk.h LIB_H += refs.h LIB_H += remote.h +LIB_H += rerere.h LIB_H += revision.h LIB_H += run-command.h LIB_H += sha1-lookup.h @@ -447,6 +448,7 @@ LIB_OBJS += read-cache.o LIB_OBJS += reflog-walk.o LIB_OBJS += refs.o LIB_OBJS += remote.o +LIB_OBJS += rerere.o LIB_OBJS += revision.o LIB_OBJS += run-command.o LIB_OBJS += server-info.o |