-
-
Notifications
You must be signed in to change notification settings - Fork 483
Expand file tree
/
Copy path.gitattributes
More file actions
24 lines (20 loc) · 894 Bytes
/
Copy path.gitattributes
File metadata and controls
24 lines (20 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
data/** -linguist-detectable
workbooks/** -linguist-detectable
notebooks/** -linguist-detectable
docs/* linguist-documentation
*.html linguist-vendored
# Use bd merge for beads JSONL files
.beads/beads.jsonl merge=beads
# Jupyter notebook configuration
# Mark notebooks as binary to avoid messy JSON diffs
*.ipynb diff=jupyternotebook
*.ipynb merge=jupyternotebook
# Every branch adds its own bullets to the [Unreleased] block, at the same
# place, so any two of them conflict on lines neither one actually disputes.
# `union` keeps both sides of a conflicting hunk instead of stopping.
#
# This is right for a changelog that is only ever APPENDED to, and it is the
# whole risk too: if two branches edit the SAME bullet, union keeps both
# versions rather than choosing. That shows up as an obvious duplicate in
# review, where a silently dropped bullet does not.
CHANGELOG.md merge=union