Re: [PATCH 2/3] Move copy_note_for_rewrite + friends from builtin/notes.c to notes-utils.c
From: Junio C Hamano <hidden>
Date: 2016-06-15 22:57:43
Johan Herland [off-list ref] writes:
This is a pure code movement of the machinery for copying notes to rewritten objects. This code was located in builtin/notes.c for historical reasons. In order to make it available to builtin/commit.c it was declared in builtin.h. This was more of an accident of history than a concious design, and we now want to make this machinery more widely available. Hence, this patch moves the code into the new notes-utils.[hc] files which are included into libgit.a. Except for adjusting #includes accordingly, this patch merely moves the relevant functions verbatim into the new files. Cc: Thomas Rast <redacted> Signed-off-by: Johan Herland <redacted> --- Makefile | 2 + builtin.h | 16 ------- builtin/commit.c | 1 + builtin/notes.c | 131 +----------------------------------------------------- notes-utils.c | 132 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ notes-utils.h | 23 ++++++++++ 6 files changed, 159 insertions(+), 146 deletions(-) create mode 100644 notes-utils.c create mode 100644 notes-utils.h
Output from "git show -C1 --stat" after applying this patch shows mostly removals (i.e. builtin/notes.c loses what was lifted from it, notes-utils.c starts its life as a copy of the former and the patch shows removal of what should not move to notes-utils.c). After inspecting "added" lines to these two files, I did not spot anything suspicious, except for one C++/C99 comment (will locally touch-up). Thanks.