-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitattributes
More file actions
40 lines (33 loc) · 800 Bytes
/
Copy path.gitattributes
File metadata and controls
40 lines (33 loc) · 800 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
# oh-my-claude - Git attributes for cross-platform compatibility
# Ensures proper line endings between Windows and Linux
# Auto-detect text files and normalize line endings to LF on checkin
* text=auto
# Shell scripts must use LF (critical for Linux/macOS execution)
*.sh text eol=lf
# Configuration and data files
*.json text eol=lf
*.md text eol=lf
*.txt text eol=lf
# Documentation
CHANGELOG text eol=lf
CHANGELOG.md text eol=lf
README text eol=lf
README.md text eol=lf
LICENSE text eol=lf
VERSION text eol=lf
# Installer scripts (no extension)
install.sh text eol=lf
local-install.sh text eol=lf
bump-version.sh text eol=lf
# Images (binary files)
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.ico binary
*.svg binary
# Archives
*.zip binary
*.tar binary
*.gz binary
*.tgz binary