Skip to content

Commit a50481c

Browse files
committed
Added .gitignore and .gitattributes files
1 parent 27f8539 commit a50481c

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

.gitattributes

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# Explicitly declare text files we want to always be normalized and converted
5+
# to native line endings on checkout.
6+
*.c text
7+
*.cpp text
8+
*.h text
9+
*.hxx text
10+
*.hpp text
11+
12+
# Denote all files that are truly binary and should not be modified.
13+
*.png binary
14+
*.jpg binary
15+
16+
# Standard to msysgit
17+
*.doc diff=astextplain
18+
*.DOC diff=astextplain
19+
*.docx diff=astextplain
20+
*.DOCX diff=astextplain
21+
*.dot diff=astextplain
22+
*.DOT diff=astextplain
23+
*.pdf diff=astextplain
24+
*.PDF diff=astextplain
25+
*.rtf diff=astextplain
26+
*.RTF diff=astextplain

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Ignore the user-specific initial_cache file
2+
initial_cache.cmake

0 commit comments

Comments
 (0)