-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
45 lines (38 loc) · 826 Bytes
/
Copy path.gitattributes
File metadata and controls
45 lines (38 loc) · 826 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Trigger - Git Attributes File
#
# Specifies attributes for git operations
# Text files should use CRLF line endings on Windows, LF on Unix
* text=auto
# Ensure line endings are consistent
*.adb text eol=lf
*.ads text eol=lf
*.zig text eol=lf
*.idr text eol=lf
*.adoc text eol=lf
*.md text eol=lf
*.txt text eol=lf
# Binary files
*.session binary
*.sessionj binary
*.so binary
*.dll binary
*.dylib binary
# License files should be treated as text
LICENSE text
LICENSES/* text
# Merge strategies
*.adb merge=union
*.ads merge=union
*.zig merge=union
*.idr merge=union
# Diff strategies
*.adb diff
*.ads diff
*.zig diff
*.idr diff
# Linguist language detection
*.adb linguist-language=Ada
*.ads linguist-language=Ada
*.zig linguist-language=Zig
*.idr linguist-language=Idris
*.adoc linguist-language=AsciiDoc