안녕하세요. 팀드모네입니다. 오늘은 git push 중 발생하는 에러 해결 방법에 대해서 공유드립니다. 저의 경우 IntelliJ에서 git push를 했더니 발생하였습니다. 1. 에러명 fatal: detected dubious ownership in repository at 에러를 잘 읽어보니 dubious ownership (이게 니꺼냐? 아니면 네꺼냐?) 뭐 이러네요. 검색을 해보니 안전한 폴더로 지정하면 해결될 수 있다고 하네요. safe.directory 명령어로 대응하겠습니다. 2. 해결 방법 git config --global --add safe.directory 프로젝트경로 ex) git config --global --add safe.directory D:/intelliJProject/..
[git 에러] fatal: detected dubious ownership in repository at 해결 방법
안녕하세요. 팀드모네입니다. 오늘은 git push 중 발생하는 에러 해결 방법에 대해서 공유드립니다. 저의 경우 IntelliJ에서 git push를 했더니 발생하였습니다. 1. 에러명 fatal: detected dubious ownership in repository at 에러를 잘 읽어보니 dubious ownership (이게 니꺼냐? 아니면 네꺼냐?) 뭐 이러네요. 검색을 해보니 안전한 폴더로 지정하면 해결될 수 있다고 하네요. safe.directory 명령어로 대응하겠습니다. 2. 해결 방법 git config --global --add safe.directory 프로젝트경로 ex) git config --global --add safe.directory D:/intelliJProject/..
2023.01.28