Tool/Git

Git - 연동 오류 설정

Jessi :D 2023. 5. 10. 10:24

 

Make sure you configure your 'user.name' and 'user.email' in git

 

 

Git 설치 후 사용자 이름과 이메일 연동 해주어야 함

git config --global user.name "이름"
git config --global user.email "이메일"

 

 

프로젝트마다 다른 이름,이메일 사용하려면 --global 빼고 등록


 

https://docs.github.com/en/get-started/getting-started-with-git/setting-your-username-in-git

 

Setting your username in Git - GitHub Docs

Git uses a username to associate commits with an identity. The Git username is not the same as your GitHub username.

docs.github.com

 

 

 

반응형