Skip to content

Commit b3ff059

Browse files
committed
chore: git configurations.
1 parent b900f4f commit b3ff059

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed

.gitattributes

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Set all files to use LF line endings by default
2+
* text eol=lf
3+
4+
# Override specific file types
5+
*.bat text eol=crlf
6+
7+
# Treat binary files as binary
8+
*.png binary
9+
*.jpg binary
10+
*.jpeg binary
11+
*.gif binary
12+
*.ico binary
13+
*.exe binary
14+
*.dll binary
15+
*.lib binary
16+
*.so binary
17+
18+
# Ignore merge conflicts for generated files
19+
CMakeCache.txt merge=union
20+
*.vcxproj merge=union
21+
*.vcxproj.filters merge=union
22+
*.sln merge=union

.gitignore

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Visual Studio
2+
.sln/
3+
4+
*.sln.lnk
5+
6+
# Locks
7+
/*.lock
8+
9+
# scons db
10+
.sconsign*.dblite
11+
12+
# C++
13+
*.obj
14+
15+
# Build
16+
.build/
17+
18+
# npm
19+
node_modules/

0 commit comments

Comments
 (0)