merge(third_party/git): Merge squashed git subtree at v2.23.0
Merge commit '1b593e1ea4
' as 'third_party/git'
This commit is contained in:
commit
7ef0d62730
3629 changed files with 1139935 additions and 0 deletions
32
third_party/git/shortlog.h
vendored
Normal file
32
third_party/git/shortlog.h
vendored
Normal file
|
@ -0,0 +1,32 @@
|
|||
#ifndef SHORTLOG_H
|
||||
#define SHORTLOG_H
|
||||
|
||||
#include "string-list.h"
|
||||
|
||||
struct commit;
|
||||
|
||||
struct shortlog {
|
||||
struct string_list list;
|
||||
int summary;
|
||||
int wrap_lines;
|
||||
int sort_by_number;
|
||||
int wrap;
|
||||
int in1;
|
||||
int in2;
|
||||
int user_format;
|
||||
int abbrev;
|
||||
int committer;
|
||||
|
||||
char *common_repo_prefix;
|
||||
int email;
|
||||
struct string_list mailmap;
|
||||
FILE *file;
|
||||
};
|
||||
|
||||
void shortlog_init(struct shortlog *log);
|
||||
|
||||
void shortlog_add_commit(struct shortlog *log, struct commit *commit);
|
||||
|
||||
void shortlog_output(struct shortlog *log);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue