GitHub
(GitHub) fatal: empty ident name (for <(null)>) not allowed 오류
SAFE
2016. 5. 3. 11:39
여기 사이트를 참고하면서 이해하고 명령어를 치다가
출처 : https://nolboo.github.io/blog/2013/10/06/github-for-beginner/
git commit -m "Add Readme.txt" 이걸 치다가..
이미지와 다르게 오류가 나왔다.
이런 오류..
*** 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: empty ident name (for <(null)>) not allowed.
이미지 속에 답이 있긴 하다...
이메일과 아이디 넣어주면 된다.
출처 : https://bbs.archlinux.org/viewtopic.php?id=163624
git config --global user.email 이메일주소@naver.com
git config --global user.name "아이디"
오류화면
오류 해결 결과