chore: Impeccable 훅 캐시를 gitignore에 추가 - #393
Merged
Merged
Conversation
src/dashboard/.impeccable/hook.cache.json 은 Impeccable 훅이 세션마다 새로 쓰는 로컬 캐시로, 절대경로와 세션 UUID를 담고 있어 추적 대상이 아니다. Cache 섹션에 .impeccable/ 를 추가해 모든 경로 깊이에서 무시한다. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_017tJd9QYufBsW7CyaYRkNFy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
문제
src/dashboard/.impeccable/hook.cache.json이 gitignore에 없어 매 세션git status에 untracked로 올라온다. 내용은 Impeccable 훅의 로컬 캐시로, 절대경로(/Users/.../workspaces/...)와 세션 UUID를 담고 있어 공유 대상이 아니다.변경
.gitignoreCache 섹션에.impeccable/한 줄 추가. 선행 슬래시가 없어 레포 내 모든 깊이에서 매칭된다.검증
RED → GREEN (
git check-ignore -v src/dashboard/.impeccable/hook.cache.json):.gitignore:65:.impeccable/ src/dashboard/.impeccable/hook.cache.json기존 추적 파일 영향 없음 —
git ls-files | grep -i impeccable결과 0건.🤖 Generated with Claude Code
https://claude.ai/code/session_017tJd9QYufBsW7CyaYRkNFy