Skip to content

Commit 01e301a

Browse files
committed
Fixed .gitattributes
1 parent f1644df commit 01e301a

File tree

1 file changed

+40
-54
lines changed

1 file changed

+40
-54
lines changed

.gitattributes

Lines changed: 40 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,54 +1,40 @@
1-
### Check me into the root of the repo
2-
### as .gitattributes
3-
4-
*.approved.* binary
5-
6-
*.doc diff=astextplain
7-
*.DOC diff=astextplain
8-
*.docx diff=astextplain
9-
*.DOCX diff=astextplain
10-
*.dot diff=astextplain
11-
*.DOT diff=astextplain
12-
*.pdf diff=astextplain
13-
*.PDF diff=astextplain
14-
*.rtf diff=astextplain
15-
*.RTF diff=astextplain
16-
17-
*.jpg binary
18-
*.png binary
19-
*.gif binary
20-
21-
*.cs -text=auto diff=csharp
22-
*.vb -text=auto
23-
*.c -text=auto
24-
*.cpp -text=auto
25-
*.cxx -text=auto
26-
*.h -text=auto
27-
*.hxx -text=auto
28-
*.py -text=auto
29-
*.rb -text=auto
30-
*.java -text=auto
31-
*.html -text=auto
32-
*.htm -text=auto
33-
*.css -text=auto
34-
*.scss -text=auto
35-
*.sass -text=auto
36-
*.less -text=auto
37-
*.js -text=auto
38-
*.lisp -text=auto
39-
*.clj -text=auto
40-
*.sql -text=auto
41-
*.php -text=auto
42-
*.lua -text=auto
43-
*.m -text=auto
44-
*.asm -text=auto
45-
*.erl -text=auto
46-
*.fs -text=auto
47-
*.fsx -text=auto
48-
*.hs -text=auto
49-
50-
*.csproj -text=auto merge=union
51-
*.vbproj -text=auto merge=union
52-
*.fsproj -text=auto merge=union
53-
*.dbproj -text=auto merge=union
54-
*.sln -text merge=union
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
*.approved.* binary
5+
6+
*.doc diff=astextplain
7+
*.DOC diff=astextplain
8+
*.docx diff=astextplain
9+
*.DOCX diff=astextplain
10+
*.dot diff=astextplain
11+
*.DOT diff=astextplain
12+
*.pdf diff=astextplain
13+
*.PDF diff=astextplain
14+
*.rtf diff=astextplain
15+
*.RTF diff=astextplain
16+
17+
*.jpg binary
18+
*.png binary
19+
*.gif binary
20+
21+
22+
# Custom for Visual Studio
23+
*.cs text eol=crlf diff=csharp
24+
*.sln text eol=crlf merge=union
25+
*.csproj text eol=crlf merge=union
26+
*.vbproj text eol=crlf merge=union
27+
*.fsproj text eol=crlf merge=union
28+
*.dbproj text eol=crlf merge=union
29+
30+
# Standard to msysgit
31+
*.doc diff=astextplain
32+
*.DOC diff=astextplain
33+
*.docx diff=astextplain
34+
*.DOCX diff=astextplain
35+
*.dot diff=astextplain
36+
*.DOT diff=astextplain
37+
*.pdf diff=astextplain
38+
*.PDF diff=astextplain
39+
*.rtf diff=astextplain
40+
*.RTF diff=astextplain

0 commit comments

Comments
 (0)