]> git.ipfire.org Git - thirdparty/git.git/blame - diff-merges.h
refs: print error message in debug output
[thirdparty/git.git] / diff-merges.h
CommitLineData
a37eec63
SO
1#ifndef DIFF_MERGES_H
2#define DIFF_MERGES_H
3
4/*
5 * diff-merges - utility module to handle command-line options for
6 * selection of particular diff format of merge commits
7 * representation.
8 */
9
10struct rev_info;
11
17c13e60
SO
12int diff_merges_config(const char *value);
13
5acffd34 14void diff_merges_suppress_m_parsing(void);
19b2517f 15
18f09473
SO
16int diff_merges_parse_opts(struct rev_info *revs, const char **argv);
17
09322b1d
SO
18void diff_merges_suppress(struct rev_info *revs);
19
564a4fc8 20void diff_merges_default_to_first_parent(struct rev_info *revs);
18f09473
SO
21
22void diff_merges_default_to_dense_combined(struct rev_info *revs);
23
3b6c17b5
SO
24void diff_merges_set_dense_combined_if_unset(struct rev_info *revs);
25
564a4fc8 26void diff_merges_setup_revs(struct rev_info *revs);
a37eec63
SO
27
28#endif