협업 도구/Git & GitHub
[VScode] Git 사용자 이름 및 이메일 주소 수정하는 법
jjinny_0609
2023. 5. 10. 22:22
728x90
사용자 이름 변경
git config --global user.name "Your Name"
커밋할때 보이는 이메일 주소를 번경
git config --global user.email "your-email-address@example.com"
변경한 사용자 이름 확인
git config user.name
변경한 이메일 주소 확인
git config user.email
Vcode에서 Git 사용자 이름 및 이메일 주소 수정하는 법을 알아보았습니다.
728x90