projects
/
git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
run-command: Redirect stderr to a pipe before redirecting stdout to stderr
[git]
/
shortlog.h
1
#ifndef SHORTLOG_H
2
#define SHORTLOG_H
3
4
#include "path-list.h"
5
6
struct shortlog {
7
struct path_list list;
8
int summary;
9
int wrap_lines;
10
int sort_by_number;
11
int wrap;
12
int in1;
13
int in2;
14
15
char *common_repo_prefix;
16
int email;
17
struct path_list mailmap;
18
};
19
20
void shortlog_init(struct shortlog *log);
21
22
void shortlog_add_commit(struct shortlog *log, struct commit *commit);
23
24
void shortlog_output(struct shortlog *log);
25
26
#endif