git-update-index.txt: Document the --really-refresh option.
[git/jnareb-git.git] / log-tree.h
blob3f7b40027b7203985f018e43ab72a6cfc233e8d7
1 #ifndef LOG_TREE_H
2 #define LOG_TREE_H
4 #include "revision.h"
6 struct log_info {
7 struct commit *commit, *parent;
8 };
10 void init_log_tree_opt(struct rev_info *);
11 int log_tree_diff_flush(struct rev_info *);
12 int log_tree_commit(struct rev_info *, struct commit *);
13 int log_tree_opt_parse(struct rev_info *, const char **, int);
14 void show_log(struct rev_info *opt);
15 void show_decorations(struct rev_info *opt, struct commit *commit);
16 void log_write_email_headers(struct rev_info *opt, struct commit *commit,
17 const char **subject_p,
18 const char **extra_headers_p,
19 int *need_8bit_cte_p);
20 void load_ref_decorations(int flags);
22 #define FORMAT_PATCH_NAME_MAX 64
23 void get_patch_filename(struct commit *commit, int nr, const char *suffix,
24 struct strbuf *buf);
26 #endif