mirror of
https://github.com/git/git.git
synced 2024-11-02 15:28:21 +01:00
5f1c3f07b7
This separates out the part that deals with one-commit diff-tree (and --stdin form) into a separate log-tree module. There are two goals with this. The more important one is to be able to make this part available to "git log --diff", so that we can have a native "git whatchanged" command. Another is to simplify the commit log generation part simpler. Signed-off-by: Junio C Hamano <junkio@cox.net>
23 lines
560 B
C
23 lines
560 B
C
#ifndef LOG_TREE_H
|
|
#define LOG_TREE_H
|
|
|
|
struct log_tree_opt {
|
|
struct diff_options diffopt;
|
|
int show_root_diff;
|
|
int no_commit_id;
|
|
int verbose_header;
|
|
int ignore_merges;
|
|
int combine_merges;
|
|
int dense_combined_merges;
|
|
int always_show_header;
|
|
const char *header_prefix;
|
|
const char *header;
|
|
enum cmit_fmt commit_format;
|
|
};
|
|
|
|
void init_log_tree_opt(struct log_tree_opt *);
|
|
int log_tree_diff_flush(struct log_tree_opt *);
|
|
int log_tree_commit(struct log_tree_opt *, struct commit *);
|
|
int log_tree_opt_parse(struct log_tree_opt *, const char **, int);
|
|
|
|
#endif
|