diff options
author | Ævar Arnfjörð Bjarmason <avarab@gmail.com> | 2022-02-16 09:14:02 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-02-16 09:40:00 -0800 |
commit | 88c7b4c3c8d51510d20ebb9990750ad0e97afbfb (patch) | |
tree | 2bd40e97a951eaa60647ead589c77abff625f5d0 /builtin/commit.c | |
parent | cache.h: remove always unused show_date_human() declaration (diff) | |
download | tgif-88c7b4c3c8d51510d20ebb9990750ad0e97afbfb.tar.xz |
date API: create a date.h, split from cache.h
Move the declaration of the date.c functions from cache.h, and adjust
the relevant users to include the new date.h header.
The show_ident_date() function belonged in pretty.h (it's defined in
pretty.c), its two users outside of pretty.c didn't strictly need to
include pretty.h, as they get it indirectly, but let's add it to them
anyway.
Similarly, the change to "builtin/{fast-import,show-branch,tag}.c"
isn't needed as far as the compiler is concerned, but since they all
use the "DATE_MODE()" macro we now define in date.h, let's have them
include it.
We could simply include this new header in "cache.h", but as this
change shows these functions weren't common enough to warrant
including in it in the first place. By moving them out of cache.h
changes to this API will no longer cause a (mostly) full re-build of
the project when "make" is run.
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/commit.c')
-rw-r--r-- | builtin/commit.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin/commit.c b/builtin/commit.c index b9ed0374e3..6b99ac276d 100644 --- a/builtin/commit.c +++ b/builtin/commit.c @@ -37,6 +37,7 @@ #include "help.h" #include "commit-reach.h" #include "commit-graph.h" +#include "pretty.h" static const char * const builtin_commit_usage[] = { N_("git commit [<options>] [--] <pathspec>..."), |