diff options
| author | Junio C Hamano <gitster@pobox.com> | 2025-08-01 11:27:10 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-08-01 11:27:10 -0700 |
| commit | 6741b9b7c61b9d02fc1f0cb63bcfd6c9f83ba141 (patch) | |
| tree | e825b04293ecafb5c2b5802cf3d3c5514488a380 /builtin | |
| parent | e813a0200a7121b97fec535f0d0b460b0a33356c (diff) | |
| parent | 9b5c002811e672fe994d72a4f0cc9325a0ecffa8 (diff) | |
| download | git-6741b9b7c61b9d02fc1f0cb63bcfd6c9f83ba141.tar.gz | |
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
Diffstat (limited to 'builtin')
| -rw-r--r-- | builtin/rev-list.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/builtin/rev-list.c b/builtin/rev-list.c index 4d0c460f18..1d084bcac3 100644 --- a/builtin/rev-list.c +++ b/builtin/rev-list.c @@ -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" |
