[개발] 지식/Git
Make sure you configure your 'user.name' and 'user.email' in git. 메세지 발생시 조치법
하하미아
2021. 12. 11. 12:26
에러 발생
linux에서 git commit&push를 실행하는데 다음과 같은 메세지가 뜨면서 진행이 안되었다.
Make sure you configure your '[user.name](http://user.name/)' and 'user.email' in git.
user.name
과 user.email
을 config 파일에 작성해야 한다.
조치
global config 수정
사용하고 있는 머신에 전역으로 설정하고 싶다면 아래 명령어를 실행한다.
git config --global user.name "projooni"
git config --global user.email "projooni@kakao.com"
프로젝트별 config 수정(권장)
--global
옵션을 제외하고 수행하면, 현재 프로젝트에만 해당 내용이 적용된다. 전역 설정은 일반적으로 유지보수에 적합하지 않기 때문에 프로젝트별로 설정하는 것이 합리적일 것이다.
git config user.name "projooni"
git config user.email "projooni@kakao.com"
Reference
[Git] git 연동 오류 - Make sure you configure your 'user.name' and 'user.email' in git.