From: Jacob Keller <jacob.keller@xxxxxxxxx> This series implements mergeStrategy configuration options which take the same value as --strategy. This series does not change the allowed refs to merge from or to. There is a known limitation that you cannot merge from refs outside of refs/notes (precluding the use of such refs as refs/tracking/origin/notes/ and so forth). - Changes since v8 - * drop the rewrite and merge option patches, since rewrite names are not really equivalent to merge names (ours/theirs is flipped) * change docs on notes.<name>.mergeStrategy This series does *not* deal with: * changes to which refs can be merged, init_notes_check already prevents git-notes-merge into refs outside of refs/notes* * use of rewrite names for merge strategies, including even concatenate Hopefully a future contributor will have some time to look at making re-write just use the notes merge instead of doing re-write by hand. This would also potentially allow for manual merges. This series does not begin down this road, since we do not want to limit what this future author is allowed to do with regards to rewrite and merge strategy names. I think finally this series is good. It may be worth adding some test_expect_failures around merging from refs/tracking/origin/notes if we intend to ever allow notes merges from these sources. Jacob Keller (6): notes: document cat_sort_uniq rewriteMode notes: extract enum notes_merge_strategy to notes-utils.h note: extract parse_notes_merge_strategy to notes-utils notes: add tests for --commit/--abort/--strategy exclusivity notes: add notes.mergeStrategy option to select default strategy notes: teach git-notes about notes.<name>.mergeStrategy option Documentation/config.txt | 16 ++++++- Documentation/git-notes.txt | 25 +++++++++-- builtin/notes.c | 43 +++++++++++++------ notes-merge.h | 10 ++--- notes-utils.c | 18 ++++++++ notes-utils.h | 9 ++++ t/t3309-notes-merge-auto-resolve.sh | 79 +++++++++++++++++++++++++++++++++++ t/t3310-notes-merge-manual-resolve.sh | 12 ++++++ 8 files changed, 187 insertions(+), 25 deletions(-) -- 2.5.0.280.g4aaba03 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html