repo.or.cz
/
git
/
gitweb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Documentation/git-merge.txt: Partial rewrite of How Merge Works
[git/gitweb.git]
/
shortlog.h
blob
6608ee80b08881146b2678dba3120a036b69cc28
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
int
user_format
;
15
16
char
*
common_repo_prefix
;
17
int
email
;
18
struct
path_list mailmap
;
19
};
20
21
void
shortlog_init
(
struct
shortlog
*
log
);
22
23
void
shortlog_add_commit
(
struct
shortlog
*
log
,
struct
commit
*
commit
);
24
25
void
shortlog_output
(
struct
shortlog
*
log
);
26
27
#endif