-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
executable file
·39 lines (34 loc) · 925 Bytes
/
Copy path.gitattributes
File metadata and controls
executable file
·39 lines (34 loc) · 925 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
# 全局換行符 (to unix)
* text=auto
# 編碼與格式
*.sh text eol=lf working-tree-encoding=UTF-8
*.json text eol=lf working-tree-encoding=UTF-8
*.yml text eol=lf working-tree-encoding=UTF-8
*.md text eol=lf working-tree-encoding=UTF-8
*.py text eol=lf working-tree-encoding=UTF-8
*.ini text eol=lf working-tree-encoding=UTF-8
*.log text eol=lf working-tree-encoding=UTF-8
*.sql text eol=lf working-tree-encoding=UTF-8
*.css text eol=lf working-tree-encoding=UTF-8
*.js text eol=lf working-tree-encoding=UTF-8
*.txt text eol=lf working-tree-encoding=UTF-8
# Merge 與 Diff 設定
*.md diff=markdown
*.json diff=text
*.doc merge=binary
*.xls merge=binary
*.xlsx merge=binary
*.docx merge=binary
*.whl merge=binary
*.tgz merge=binary
# 二進位檔案
*.png binary
*.jpg binary
*.gif binary
*.pdf binary
*.zip binary
# 特殊處理
*.log export-ignore
.env export-ignore
build/* export-ignore
dist/* export-ignore