git clone 시 파일들을 전부 다운하지 못하는 오류가 발생했다. 파일을 확인해보면 다운받지 못한 파일은 git 상에서 삭제된 상태로 나타나 있었다. Clone succeeded, but checkout failed. you can inspect what was checked out with 'git status' and retry with 'git restore --source=HEAD :/' 자세히 메세지를 뜯어보니 이라는"Filename too long" 이라는 메세지가 있었다. 이는 파일 경로 길이가 260자로 제한되어 생긴 문제로 해결하기위해서는 아래의 명령어를 통해 git의 core.longpaths 설정을 true로 지정하면 된다. git config --system core.longpa..