오류 발생
다음과 같이
fatal: detected dubious ownership in repository at [프로젝트 경로]
오류 발생
dembele@moussa MINGW64 [프로젝트 경로]
$ git status
fatal: detected dubious ownership in repository at '[프로젝트 경로]'
'[프로젝트 경로]' is owned by:
[이전 계정]
but the current user is:
[현재 계정]
To add an exception for this directory, call:
git config --global --add safe.directory [프로젝트 경로]
해결 방법
fatal: detected dubious ownership in repository at '[프로젝트 경로]'
와 같은 오류 문구는 [프로젝트 경로]에 대해 의심스러움 소유권을 탐지하였다고 알려주고 있다.
해결방법은
노출된 로그 중 맨 아랫줄에 있는
git config --global --add safe.directory [프로젝트 경로]
방법을 수행하면 위 문제가 해결된다.
반응형
'DEV > BugReport' 카테고리의 다른 글
The port may already be in use or the connector may be misconfigured. (0) | 2024.09.30 |
---|---|
[MSSQL] 열 이름 '컬럼명'이(가) 불확실합니다. 오류 (2) | 2023.01.12 |
[JavaScript] replace is not a function 오류 (2) | 2023.01.04 |
[Git] Unlink of file [파일 경로] failed. Should I try again? (y/n) (2) | 2022.10.28 |
[Git] git add * 시 경고문 발생(The following paths are ignored by one of your) (2) | 2022.04.25 |
댓글