Skip to content

Commit 2ab5fb7

Browse files
committed
.gitignore & .gitattributes
1 parent e412294 commit 2ab5fb7

File tree

2 files changed

+68
-0
lines changed

2 files changed

+68
-0
lines changed

.gitattributes

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
# Autodetect text files
2+
* text=auto
3+
4+
# ...Unless the name matches the following
5+
# overriding patterns
6+
7+
# Linux
8+
*.sh text eol=lf
9+
10+
# Sources
11+
*.c text
12+
*.cc text
13+
*.cxx text
14+
*.cpp text
15+
*.c++ text
16+
*.hpp text
17+
*.h text
18+
*.h++ text
19+
*.hh text
20+
21+
# Compiled Object files
22+
*.slo binary
23+
*.lo binary
24+
*.o binary
25+
*.obj binary
26+
27+
# Precompiled Headers
28+
*.gch binary
29+
*.pch binary
30+
31+
# Compiled Dynamic libraries
32+
*.so binary
33+
*.dylib binary
34+
*.dll binary
35+
36+
# Compiled Static libraries
37+
*.lai binary
38+
*.la binary
39+
*.a binary
40+
*.lib binary
41+
42+
# Executables
43+
*.exe binary
44+
*.out binary
45+
*.app binary
46+
47+
###############################################################################
48+
# Visual Studio
49+
###############################################################################
50+
51+
*.sln text eol=crlf
52+
*.csproj text eol=crlf
53+
*.vbproj text eol=crlf
54+
*.vcxproj text eol=crlf
55+
*.vcproj text eol=crlf
56+
*.dbproj text eol=crlf
57+
*.fsproj text eol=crlf
58+
*.lsproj text eol=crlf
59+
*.wixproj text eol=crlf
60+
*.modelproj text eol=crlf
61+
*.sqlproj text eol=crlf
62+
*.wmaproj text eol=crlf
63+
64+
*.xproj text eol=crlf
65+
*.props text eol=crlf
66+
*.filters text eol=crlf
67+
*.vcxitems text eol=crlf

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build*

0 commit comments

Comments
 (0)