git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
blob eb25bcca2494b45a8d3de647d82003cd2207a1c0 2032 bytes (raw)
name: diff-merges.c 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
 
#include "diff-merges.h"

#include "revision.h"

void init_diff_merge_revs(struct rev_info *revs) {
	revs->ignore_merges = -1;
}

int parse_diff_merge_opts(struct rev_info *revs, const char **argv) {
	int argcount = 1;
	const char *optarg;
	const char *arg = argv[0];

	if (!strcmp(arg, "-m")) {
		/*
		 * To "diff-index", "-m" means "match missing", and to the "log"
		 * family of commands, it means "show full diff for merges". Set
		 * both fields appropriately.
		 */
		revs->ignore_merges = 0;
		revs->match_missing = 1;
	} else if (!strcmp(arg, "-c")) {
		revs->diff = 1;
		revs->dense_combined_merges = 0;
		revs->combine_merges = 1;
	} else if (!strcmp(arg, "--cc")) {
		revs->diff = 1;
		revs->dense_combined_merges = 1;
		revs->combine_merges = 1;
	} else if (!strcmp(arg, "--no-diff-merges")) {
		revs->ignore_merges = 1;
	} else if (!strcmp(arg, "--combined-all-paths")) {
		revs->diff = 1;
		revs->combined_all_paths = 1;
	} else if ((argcount = parse_long_opt("diff-merges", argv, &optarg))) {
		if (!strcmp(optarg, "off")) {
			revs->ignore_merges = 1;
		} else {
			die(_("unknown value for --diff-merges: %s"), optarg);
		}
	} else
		argcount = 0;

	return argcount;
}

void setup_diff_merges_revs(struct rev_info *revs)
{
	if (revs->combine_merges && revs->ignore_merges < 0)
		revs->ignore_merges = 0;
	if (revs->ignore_merges < 0)
		revs->ignore_merges = 1;
	if (revs->combined_all_paths && !revs->combine_merges)
		die("--combined-all-paths makes no sense without -c or --cc");
}

void rev_diff_merges_first_parent_defaults_to_enable(struct rev_info *revs) {
	if (revs->first_parent_only && revs->ignore_merges < 0)
		revs->ignore_merges = 0;
}

void rev_diff_merges_default_to_dense_combined(struct rev_info *revs) {
	if (revs->ignore_merges < 0) {
		/* There was no "-m" variant on the command line */
		revs->ignore_merges = 0;
		if (!revs->first_parent_only && !revs->combine_merges) {
			/* No "--first-parent", "-c", or "--cc" */
			revs->combine_merges = 1;
			revs->dense_combined_merges = 1;
		}
	}
}

debug log:

solving eb25bcca2494 ...
found eb25bcca2494 in https://public-inbox.org/git/20201216184929.3924-6-sorganov@gmail.com/

applying [1/1] https://public-inbox.org/git/20201216184929.3924-6-sorganov@gmail.com/
diff --git a/diff-merges.c b/diff-merges.c
new file mode 100644
index 000000000000..eb25bcca2494

Checking patch diff-merges.c...
Applied patch diff-merges.c cleanly.

index at:
100644 eb25bcca2494b45a8d3de647d82003cd2207a1c0	diff-merges.c

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).