[Git] fatal: could not create work tree dir 'dir name': Permission denied 해결 방법
무작정 개발
Windows 환경에서 GitBash를 통해 [ git clone ] 작업을 하다가 Error가 발생하여 해결 방법에 대해 정리하게 되었습니다. $ git clone https://github.com/chaehyuenwoo/Itwill_PlayGround.git fatal: could not create work tree dir 'Itwill_PlayGround': Permission denied gitBash란? - gitbash란 git을 이용할 수 있는 bash shell을 의미한다. [ 원인 ] 해당 Error 원인은 사용자의 PC에서 해당 폴더에 대한 접근 권한이 없어서 발생하였습니다. Linux 환경이 아닌 Windows 환경이기에 명령어로 수정할 수 없었습니다. [ 해결 방법 ] git cl..