# 윈도우에서 Filename too long 에러가 발생 윈도우 API가 파일경로 길이를 260자로 제한해서 git 명령어를 입력한다. => git config --system core.longpaths true # 추가적인 트러블 슈팅 -> permission denied오류 error: could not lock config file C:/Program Files/Git/etc/gitconfig: Permission denied git config --system core.longpaths true에서 --system명령은 권한이 필요한 것 같음 git bash를 관리자 권한으로 실행한다. Git Bash에서 git config --system core.longpaths true을 입력 ( 만약 오..