diff options
author | Olga Telezhnaya <olyatelezhnaya@gmail.com> | 2017-12-12 09:55:35 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-12-12 19:39:43 +0100 |
commit | cf3947193c496132f653cc19ecb2771afd0acd1e (patch) | |
tree | 84832eab3fa2232456a9b4728b7528cd3096fef5 /builtin/show-branch.c | |
parent | Prepare for 2.15.2 (diff) | |
download | git-cf3947193c496132f653cc19ecb2771afd0acd1e.tar.xz git-cf3947193c496132f653cc19ecb2771afd0acd1e.zip |
format: create pretty.h file
Create header for pretty.c to make formatting interface more structured.
This is a middle point, this file would be merged further with other
files which contain formatting stuff.
Signed-off-by: Olga Telezhnaia <olyatelezhnaya@gmail.com>
Mentored-by: Christian Couder <christian.couder@gmail.com>
Mentored by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/show-branch.c')
-rw-r--r-- | builtin/show-branch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/show-branch.c b/builtin/show-branch.c index 6fa1f62a88..f4069d6ec8 100644 --- a/builtin/show-branch.c +++ b/builtin/show-branch.c @@ -1,6 +1,6 @@ #include "cache.h" #include "config.h" -#include "commit.h" +#include "pretty.h" #include "refs.h" #include "builtin.h" #include "color.h" |