Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,15 @@ my_model.json
# 같은 정상 항목을 조용히 삼켰다(07-27 작성 → 커밋된 적 없음, `git status`에도
# 안 뜸). 무시된 파일은 미추적으로도 안 보이므로 개수를 세기 전엔 드러나지 않는다.
!catalog/**
# ...단 그 예외가 빌드 산출물까지 되살렸다. `!catalog/**` 는 1~2행의 `__pycache__/`·`*.pyc`
# 보다 뒤에 있어 catalog/ 아래 .pyc 를 다시 포함시킨다. 넓은 부정에는 좁은 재제외가 따라와야 한다.
#
# ⚠️ 정확히: `pytest` 뒤 워킹트리가 더러워진 것은 그 파일이 **이미 추적 중**이라서다 —
# .gitignore 는 추적 파일에 아예 안 듣는다. 이 부정이 설명하는 것은 *어떻게 추적으로
# 들어왔나*와 *`git rm --cached` 뒤 넓은 `git add` 에 왜 되살아나나* 다. 그래서 수리가
# 둘이다: 추적 해제(한 번) + 재제외(다시 안 들어오게).
catalog/**/__pycache__/
catalog/**/*.pyc

# 도감 표본 초안 (catalog/draft_specimen.py 산출) — 사람이 완성·검증 전엔 커밋 금지.
# 완성되면 .DRAFT.md → .md 로 승격해 정식 항목이 된다.
Expand Down
Binary file removed catalog/__pycache__/draft_specimen.cpython-310.pyc
Binary file not shown.
Loading