Set merge=union Git attribute for CHANGELOG.md

Currently all PRs add a line to CHANGELOG.md, usually at the end. This means
they almost always run into merge conflicts since they are adding different lines at the exact same
place in the file.

With merge=union Git will automatically resolve these merge conflicts by keeping all lines from both sides.
This commit is contained in:
Dario Nieuwenhuis 2021-12-20 22:02:34 +01:00
parent a0bd3dc56a
commit 8f492bc173

1
.gitattributes vendored Normal file
View File

@ -0,0 +1 @@
CHANGELOG.md merge=union