mirror of
https://github.com/git/git.git
synced 2026-01-11 21:33:13 +09:00
Merge branch 'jc/rev-list-info-cleanup'
Move structure definition from unrelated header file to where it belongs. * jc/rev-list-info-cleanup: rev-list: make "struct rev_list_info" static to the only user
This commit is contained in:
commit
6741b9b7c6
8
bisect.h
8
bisect.h
@ -27,14 +27,6 @@ struct commit_list *filter_skipped(struct commit_list *list,
|
||||
#define FIND_BISECTION_ALL (1u<<0)
|
||||
#define FIND_BISECTION_FIRST_PARENT_ONLY (1u<<1)
|
||||
|
||||
struct rev_list_info {
|
||||
struct rev_info *revs;
|
||||
int flags;
|
||||
int show_timestamp;
|
||||
int hdr_termination;
|
||||
const char *header_prefix;
|
||||
};
|
||||
|
||||
/*
|
||||
* enum bisect_error represents the following return codes:
|
||||
* BISECT_OK: success code. Internally, it means that next
|
||||
|
||||
@ -28,6 +28,14 @@
|
||||
#include "quote.h"
|
||||
#include "strbuf.h"
|
||||
|
||||
struct rev_list_info {
|
||||
struct rev_info *revs;
|
||||
int flags;
|
||||
int show_timestamp;
|
||||
int hdr_termination;
|
||||
const char *header_prefix;
|
||||
};
|
||||
|
||||
static const char rev_list_usage[] =
|
||||
"git rev-list [<options>] <commit>... [--] [<path>...]\n"
|
||||
"\n"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user