-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.gitattributes
97 lines (78 loc) · 1.88 KB
/
.gitattributes
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#########################################################################################
## Project : Collect of various scripts for working with EDA-tools (ASIC/FPGA/etc) ##
## Designer : Dmitry Murzinov (kakstattakim@gmail.com) ##
## Link : https://github.com/iDoka/eda-scripts ##
## Description: .gitattributes ##
## Usage : just rename or add contain to .gitattributes ##
## License : MIT ##
#########################################################################################
# Handle line endings automatically for files detected as text and leave all files detected as binary untouched
# Auto detect text files and perform LF normalization
* text=auto
### git
.gitattributes text
.gitignore text
.gitmodules text
.gitkeep text
##### HDL
*.v text
*.vh text
*.sv text
*.svh text
*.opt text
### reports
# *.rpt text
# *.log text
### script
*.tcl text
*.setup text
*.prj text
*.m text
*.py text
*.pl text
*.php text
*.sh text
*.bash text
*.awk text
*.m4 text
Makefile text
*.makefile text
*.mk text
### other extensions
*.c text
*.h text
*.dat text
### Documents
README text
TODO text
BUGS text
*.md text
*.markdown text
*.adoc text
*.textile text
*.asciidoc text
*.docbook text
*.csv text
*.txt text
*.rst text
*.list text
### Graphics
*.png binary diff=exif
*.jpg binary diff=exif
*.jpeg binary diff=exif
*.gif binary
*.ico binary
*.svg text
### meta
*.xml text
*.json text
### These files are binary and should be left untouched
### (binary is a macro for -text -diff)
*.gz binary
*.tgz binary
*.bz2 binary
*.tar binary
*.zip binary
*.rar binary
*.7z binary
*.ttf binary