-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
45 lines (37 loc) · 1.28 KB
/
Copy path.gitattributes
File metadata and controls
45 lines (37 loc) · 1.28 KB
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
# Normalize text files and let Git detect text files automatically
* text=auto
# Explicit binaries
*.png binary
*.jpg binary
*.jpeg binary
*.ico binary
*.zip binary
*.exe binary
*.dll binary
*.lib binary
*.dat binary
# Force LF for docs and scripts that should be LF
*.md text eol=lf
*.markdown text eol=lf
*.sh text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
# Windows scripts keep CRLF
*.bat text eol=crlf
*.ps1 text eol=crlf
# Mark vendor as vendored (hides from GitHub linguist and other tooling)
vendor/** linguist-vendored
# Don't include build artifacts and binary outputs in `git archive` packages
build/** export-ignore
bin/** export-ignore
# Ensure generated Visual Studio files are treated as binary where appropriate
*.vcxproj binary
*.sln binary
# Make sure large generated files don't get diffs
*.pbxproj -diff
# NOTE: docs/testing.md previously carried `merge=union` because the three
# auto-generated catalogue blocks lived inline and made parallel PRs collide on
# the per-block Totals line. Those tables now generate into git-ignored files
# (docs/test-catalogue.*.md, see generate_test_catalogue.py), so docs/testing.md
# is plain hand-written prose again — a normal 3-way merge is correct, and union
# is deliberately NOT used here (it would silently duplicate prose on conflict).