Make sure you configure your 'user.name' and 'user.email' in git. 메세지 발생시 조치법
2021. 12. 11. 12:26ㆍ[개발] 지식/Git
에러 발생
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.
'[개발] 지식 > Git' 카테고리의 다른 글
기존 로컬 Repository를 수정 후, 새로운 Git Repository에 push하기 (0) | 2022.07.20 |
---|---|
remote 브랜치를 checkout 하기 (0) | 2022.01.12 |
기존 Git Repository를 복사하여 새로운 Repository 만들기 (0) | 2021.10.26 |
이미 만들어진 로컬 프로젝트를 github과 연결하기 (0) | 2021.10.23 |
Filename too long.. (0) | 2020.06.09 |
<