fix: rename PDF to remove colon from filename#7
Open
BongwooChoi wants to merge 1 commit into
Open
Conversation
Colons are invalid in NTFS filenames, so git clone failed to check out the working tree on Windows. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
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.
문제
week4/Thu/폴더의 PDF 파일명에 콜론(:)이 포함되어 있습니다:[클로드_코드]_p329외_npx:uvx는_왜_AI_시대에_필요하며_동시에_위험할까요.pdf콜론은 Windows(NTFS)에서 허용되지 않는 문자라서, Windows에서
git clone시 체크아웃이 다음 에러와 함께 실패하고 작업 디렉터리가 비어 있는 상태(전체 파일이 deleted staged)가 됩니다:해결
파일명의 콜론을 언더스코어로 변경했습니다 (
npx:uvx→npx_uvx). 파일 내용은 동일합니다.이 변경으로 Windows 사용자도 저장소를 정상적으로 클론할 수 있습니다.
🤖 Generated with Claude Code