diff options
author | Derrick Stolee <dstolee@microsoft.com> | 2018-07-20 18:33:04 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-07-21 00:38:54 +0200 |
commit | 6404355657fb3ec27668fb88c5175bb22aff3acc (patch) | |
tree | fe54e41041c355ae014cb00d9e513be157a15ac9 /builtin/fetch.c | |
parent | commit-reach: move walk methods from commit.c (diff) | |
download | git-6404355657fb3ec27668fb88c5175bb22aff3acc.tar.xz git-6404355657fb3ec27668fb88c5175bb22aff3acc.zip |
commit.h: remove method declarations
These methods are now declared in commit-reach.h. Remove them from
commit.h and add new include statements in all files that require these
declarations.
Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/fetch.c')
-rw-r--r-- | builtin/fetch.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin/fetch.c b/builtin/fetch.c index f5d960baec..7de234774b 100644 --- a/builtin/fetch.c +++ b/builtin/fetch.c @@ -22,6 +22,7 @@ #include "utf8.h" #include "packfile.h" #include "list-objects-filter-options.h" +#include "commit-reach.h" static const char * const builtin_fetch_usage[] = { N_("git fetch [<options>] [<repository> [<refspec>...]]"), |