Skip to content

Commit

Permalink
Add gitignore (#1)
Browse files Browse the repository at this point in the history
* Create .gitignore

- https://github.com/github/gitignore/blob/main/Unity.gitignore
- Add public ignore

* Delete .DS_Store

* Create pull_request_template.md
  • Loading branch information
kimchanhyung98 authored Jan 22, 2024
1 parent d1111b5 commit 1122f67
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 0 deletions.
Binary file removed .DS_Store
Binary file not shown.
4 changes: 4 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
## 작업 내용
- 요약

<!-- ## 특이 사항 -->
71 changes: 71 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
# https://github.com/github/gitignore/blob/main/Unity.gitignore
/[Ll]ibrary/
/[Tt]emp/
/[Oo]bj/
/[Bb]uild/
/[Bb]uilds/
/[Ll]ogs/
/[Uu]ser[Ss]ettings/
/[Mm]emoryCaptures/
/[Rr]ecordings/
# /[Aa]ssets/AssetStoreTools*
/[Aa]ssets/Plugins/Editor/JetBrains*
/[Aa]ssets/[Aa]ddressable[Aa]ssets[Dd]ata/*/*.bin*
/[Aa]ssets/[Ss]treamingAssets/aa.meta
/[Aa]ssets/[Ss]treamingAssets/aa/*
ExportedObj/

crashlytics-build.properties
.gradle/
.consulo/
*.csproj
*.unityproj
*.sln
*.suo
*.tmp
*.user
*.userprefs
*.pidb
*.booproj
*.svd
*.pdb
*.mdb
*.opendb
*.VC.db
*.pidb.meta
*.pdb.meta
*.mdb.meta

*.apk
*.aab
*.unitypackage
*.app
*.log
*.sql

# Environment
.env
.env.testing
.env.backup
.env.production
.env.development

# IDE
/.fleet
/.idea
.vs/
/.vscode
.project
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace

# etc
sysinfo.txt
.DS_Store
.DS_Store?
.Trashes
ehthumbs.db
Thumbs.db

0 comments on commit 1122f67

Please sign in to comment.