김유현

gitignore 수정

1 # Created by .ignore support plugin (hsz.mobi) 1 # Created by .ignore support plugin (hsz.mobi)
2 .DS_Store 2 .DS_Store
3 .idea/ 3 .idea/
4 +
5 +
6 +# Created by https://www.toptal.com/developers/gitignore/api/unity
7 +# Edit at https://www.toptal.com/developers/gitignore?templates=unity
8 +
9 +### Unity ###
10 +# This .gitignore file should be placed at the root of your Unity project directory
11 +#
12 +# Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore
13 +/src/unity/creating-map/[Ll]ibrary/
14 +/src/unity/creating-map/[Tt]emp/
15 +/src/unity/creating-map/[Oo]bj/
16 +/src/unity/creating-map/[Bb]uild/
17 +/src/unity/creating-map/[Bb]uilds/
18 +/src/unity/creating-map/[Ll]ogs/
19 +/src/unity/creating-map/[Uu]ser[Ss]ettings/
20 +
21 +# MemoryCaptures can get excessive in size.
22 +# They also could contain extremely sensitive data
23 +/src/unity/creating-map/[Mm]emoryCaptures/
24 +
25 +# Asset meta data should only be ignored when the corresponding asset is also ignored
26 +!/[Aa]ssets/**/*.meta
27 +
28 +# Uncomment this line if you wish to ignore the asset store tools plugin
29 +# /[Aa]ssets/AssetStoreTools*
30 +
31 +# Autogenerated Jetbrains Rider plugin
32 +/[Aa]ssets/Plugins/Editor/JetBrains*
33 +
34 +# Visual Studio cache directory
35 +.vs/
36 +
37 +# Gradle cache directory
38 +.gradle/
39 +
40 +# Autogenerated VS/MD/Consulo solution and project files
41 +ExportedObj/
42 +.consulo/
43 +*.csproj
44 +*.unityproj
45 +*.sln
46 +*.suo
47 +*.tmp
48 +*.user
49 +*.userprefs
50 +*.pidb
51 +*.booproj
52 +*.svd
53 +*.pdb
54 +*.mdb
55 +*.opendb
56 +*.VC.db
57 +
58 +# Unity3D generated meta files
59 +*.pidb.meta
60 +*.pdb.meta
61 +*.mdb.meta
62 +
63 +# Unity3D generated file on crash reports
64 +sysinfo.txt
65 +
66 +# Builds
67 +*.apk
68 +*.unitypackage
69 +
70 +# Crashlytics generated file
71 +crashlytics-build.properties
72 +
73 +# Autogenerated files
74 +InitTestScene*.unity.meta
75 +InitTestScene*.unity
76 +
77 +
78 +# End of https://www.toptal.com/developers/gitignore/api/unity
...\ No newline at end of file ...\ No newline at end of file
......