Skip to content

Commit 78b16b4

Browse files
committed
Add .gitattributes and update .gitignore.
1 parent e30ea31 commit 78b16b4

File tree

2 files changed

+39
-6
lines changed

2 files changed

+39
-6
lines changed

.gitattributes

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
* text=auto
2+
# Text files
3+
*.cs diff=csharp text
4+
*.txt text
5+
*.mat text
6+
*.shader text
7+
*.meta text
8+
*.md5 text
9+
*.compute text
10+
*.md text
11+
*.prefab text
12+
*/ProjectSettings/*.asset text
13+

.gitignore

Lines changed: 26 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,26 @@
1-
Library/*
2-
Temp/*
3-
Assembly-CSharp-Editor.csproj
4-
Assembly-CSharp.csproj
5-
NavMeshComponents.sln
6-
NavMeshComponents.userprefs
1+
**/Library/
2+
**/Temp/
3+
**/obj/
4+
5+
**/.vscode/
6+
**/.vs
7+
8+
**/Assets/Plugins/*
9+
**/Assets/Plugins.meta
10+
11+
*.idea
12+
*.csproj
13+
*.sln
14+
*.suo
15+
*.userprefs
16+
*.app
17+
*.VC.*
18+
.DS_Store
19+
*~
20+
*.swp
21+
22+
.vs/
23+
build/*
24+
*.rsp
25+
*.pyc
26+
/Logs

0 commit comments

Comments
 (0)