Skip to content

Commit ae003d7

Browse files
committed
Update git configuration files
1 parent 1b67608 commit ae003d7

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed

.gitattributes

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Set the default behavior to have all files normalized to Unix-style
2+
# line endings upon check-in.
3+
* text=auto
4+
# Declare files that will always have CRLF line endings on checkout.
5+
*.bat text eol=crlf
6+
# Denote all files that are truly binary and should not be modified.
7+
*.dll binary
8+
*.exp binary
9+
*.lib binary
10+
*.pdb binary
11+
*.exe binary
12+

.gitignore

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@
22
*~
33
\#*\#
44

5+
# Mac
6+
.DS_Store
7+
8+
# Eclipse
9+
.classpath
10+
.project
11+
.settings/
12+
target/
13+
14+
# Intellij
15+
.idea/
16+
.idea_modules/
17+
*.iml
18+
*.iws
19+
*.class
20+
*.log
21+
22+
# Others
23+
.checkstyle
24+
.fbExcludeFilterFile
25+
526
# Byte-compiled / optimized / DLL files
627
__pycache__/
728
*.py[cod]
@@ -55,4 +76,3 @@ coverage.xml
5576

5677
# Sphinx documentation
5778
docs/_build/
58-

0 commit comments

Comments
 (0)