Windows에서 Git 사용 시 Fatal: unsafe repository. is owned by someone else. 에러 해결 방법에 대해 알아봅니다.

 

 

 

1. 현상

 

Windows OS에서 Git 사용 시 다음과 같은 에러가 발생합니다.

 

 

Fatal: unsafe repository. ...is owned by someone else. To add an exception for this directory call:...

 

 

 

2. 원인

 

Git에서 보안 취약점이 발표되었습니다. 자세한 내용은 다음 글을 참조해 주세요: Git security vulnerability announced

 

Git security vulnerability announced | The GitHub Blog

Upgrade your local installation of Git, especially if you are using Git for Windows, or you use Git on a multi-user machine.

github.blog

 

 

 

3. 수정.

 

우선 Git을 업데이트하고 다음 명령어를 통해 해당 폴더를 안전한 폴더로 지정합니다.

 

git config --global --add safe.directory {YOUR_DERECTORY_HERE}

 

 

 

4. 테스트

 

이제 Repository를 조회해 정상적으로 보이는지 확인합니다.

 

 

** 만약 동일한 오류가 계속 반복된다면 Backslash(\) 대신 Slash(/)를 사용해 경로를 지정해 보시기 바랍니다.

 

 

 

반응형

+ Recent posts