diff options
author | Elijah Newren <newren@gmail.com> | 2023-04-11 00:41:49 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-04-11 08:52:09 -0700 |
commit | dabab1d6e6c49f3d4a6393a9984e3f6a4e8fb991 (patch) | |
tree | bb905e4d042fbc3e4b5080e88eccf4181b2e6b93 /builtin/show-branch.c | |
parent | 5579f44d2fb37e1126e71870b208d93e93e510ac (diff) | |
download | git-dabab1d6e6c49f3d4a6393a9984e3f6a4e8fb991.tar.gz |
object-name.h: move declarations for object-name.c functions from cache.h
Signed-off-by: Elijah Newren <newren@gmail.com>
Acked-by: Calvin Wan <calvinwan@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/show-branch.c')
-rw-r--r-- | builtin/show-branch.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin/show-branch.c b/builtin/show-branch.c index 463a8d11c3..20030b75e3 100644 --- a/builtin/show-branch.c +++ b/builtin/show-branch.c @@ -8,6 +8,7 @@ #include "builtin.h" #include "color.h" #include "strvec.h" +#include "object-name.h" #include "parse-options.h" #include "dir.h" #include "commit-slab.h" |