오류 메세지
정상적으로 작동하던 git, github desktop에서 오류가 발생하였다.
1
2
3
4
5
6
7
8
9
10
11
***Please tell me who you are.
Run
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
to set your account's default identity.
Omit --global to set the identity only in this repository.
fatal: unable to auto-detect email address <got '어쩌고@저쩌고.<none>'>
원인
환경 변수 경로, 또는 repository 내의 git author 정보의 충돌로 보인다.
해결 방법
1. 방법
친절하게 console 메세지에서 안내받은대로 따라해보자
1
2
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
2. 방법
1번 방법이 실패할 경우 진행해준다.
1
2
git config --replace-all user.email "you@example.com"
git config --replace-all user.name ""Your Name"
참고
https://stackoverflow.com/questions/25671785/git-fatal-unable-to-auto-detect-email-address
제부도소년 님의 포스팅 [git] fatal : unable to auto-detect email 관련 오류 해결방법