From cf0c128764f5171456cd7ff740e2e9ae85b94c4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B6=8C=ED=98=81=EC=84=B1?= Date: Mon, 9 Mar 2026 23:31:41 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20.gitignore=20=ED=99=94=EC=9D=B4?= =?UTF-8?q?=ED=8A=B8=EB=A6=AC=EC=8A=A4=ED=8A=B8=E2=86=92=EB=B8=94=EB=9E=99?= =?UTF-8?q?=EB=A6=AC=EC=8A=A4=ED=8A=B8=20=EB=B0=A9=EC=8B=9D=EC=9C=BC?= =?UTF-8?q?=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 기존: 모든 파일 무시(*) + 폴더별 허용(!path) → 새 파일 추가 시 git add -f 필요 - 변경: 쓰레기 파일만 제외 (.DS_Store, *.log, *.tmp 등) --- .gitignore | 58 ++++++++++++++++-------------------------------------- 1 file changed, 17 insertions(+), 41 deletions(-) diff --git a/.gitignore b/.gitignore index 300f6f3..f9e7597 100644 --- a/.gitignore +++ b/.gitignore @@ -1,43 +1,19 @@ -# 모든 파일 무시 -* - -# 추적할 파일만 허용 -!.gitignore -!INDEX.md -!README.md -!resources.md - -# 문서 폴더 (루트 기준) -!assets/ -!assets/** -!brochure/ -!brochure/** -!changes/ -!changes/** -!contracts/ -!contracts/** -contracts/docx/backup/ -!data/ -!data/** -!dev/ -!dev/** -!features/ -!features/** -!frontend/ -!frontend/** -!guides/ -!guides/** -!plans/ -!plans/** -!projects/ -!projects/** -!requests/ -!requests/** -!rules/ -!rules/** -!system/ -!system/** - -# 기타 +# OS/에디터 생성 파일 .DS_Store +Thumbs.db +*.swp +*.swo +*~ + +# 로그/임시 파일 +*.log +*.tmp +*.temp +*.bak +*.cache + +# 노션 내보내기 임시 _to_notion/ + +# 백업 파일 +contracts/docx/backup/