.gitignore Update

.gitignore Update
This commit is contained in:
2026-06-22 12:52:04 +09:00
parent 3f1a84c3ae
commit 98fb2c2b33
+35 -29
View File
@@ -263,28 +263,21 @@ ipython_config.py
# Remove previous ipynb_checkpoints # Remove previous ipynb_checkpoints
# git rm -r .ipynb_checkpoints/ # git rm -r .ipynb_checkpoints/
## =========================================================================
# 1. Unity Generated Folders & Files (유니티 임시/자동생성 파일 완벽 차단)
# ========================================================================= # =========================================================================
# Unity Generated Folders & Files # 프로젝트가 어떤 하위 폴더 구조에 있든(**/) 대소문자 구분 없이 다 잡아냅니다.
# ========================================================================= **/[尝l]ibrary/
/[Uu]nity-client/[Ll]ibrary/ **/[Tt]emp/
/[Uu]nity-client/[Vv]2/ **/[Vu]ser[Ss]ettings/
/[Uu]nity-client/[Pp]lastic[Vv]ersion[Cc]ontrol/ **/[Ll]ogs/
/[Uu]nity-client/[Oo]bj/ **/[Oo]bj/
/[Uu]nity-client/[Bb]uild/ **/[Bb]uild/
/[Uu]nity-client/[Bb]uilds/ **/[Bb]uilds/
/[Uu]nity-client/[Ll]ogs/ **/[Vv]2/
/[Uu]nity-client/[MemoryCaptures]/ **/[Pp]lastic[Vv]ersion[Cc]ontrol/
/[Uu]nity-client/[Vv]R/
# 질문하신 Temp 폴더 제외 설정 # IDE 및 에디터가 자동 생성하는 프로젝트 파일들 제외
/[Uu]nity-client/[Tt]emp/
# 개발자 개인 설정 제외
/[Uu]nity-client/[Vu]ser[Ss]ettings/
# OS 및 IDE 생성 파일 제외 (VS Code, Visual Studio, Rider 등)
.vs/
.idea/
*.sln *.sln
*.csproj *.csproj
*.unityproj *.unityproj
@@ -299,13 +292,26 @@ ipython_config.py
*.VC.db *.VC.db
# ========================================================================= # =========================================================================
# Python AI Server Generated Folders & Files # 2. OS & IDE Specifics (맥 환경 및 개발 툴 설정 제외)
# ========================================================================= # =========================================================================
/[Aa]i-server/__pycache__/ # macOS 시스템 파일
/[Aa]i-server/*.py[cod] .DS_Store
/[Aa]i-server/*$py.class .AppleDouble
/[Aa]i-server/.pytest_cache/ .LSOverride
/[Aa]i-server/.venv/
/[Aa]i-server/venv/ # VS Code, Rider 등 IDE 설정 폴더
/[Aa]i-server/env/ .vs/
/[Aa]i-server/.env .idea/
.vscode/
# =========================================================================
# 3. Python AI Server (파이썬 가상환경 및 캐시 제외)
# =========================================================================
**/__pycache__/
**/*.py[cod]
**/*$py.class
**/.pytest_cache/
**/.venv/
**/venv/
**/env/
**/.env