1. 현재 등록된 NAME과 EMAIL을 확인한다
git config --list
2. user.name 과 user.email이 없으면 새로 등록을 해준다
git config --global user.name "홍길동"
git config --global user.email "이메일@이메일.com"
3. 이름과 이메일이 잘 등록 되었는 확인한다
git config --list
이제 commit 하면 초록초록 🌿잔디를 심을 수 있답니다! ㅎ
반응형
'➰ Library > GIT' 카테고리의 다른 글
fatal: couldn't find remote ref master. 에러 해결하기! (0) | 2021.06.30 |
---|---|
Working tree has modifications. Cannot add. 에러 해결하기! (0) | 2021.06.30 |
commit log 유지하면서 Git Repository 합치기 (1) | 2021.06.02 |
xcrun: error: invalid active developer path 에러 해결하기! (0) | 2021.03.23 |