[Git] Github 잔디 안심어지는 현상 해결 방법

Yujeong·2023년 12월 7일
0
post-thumbnail

Github에 분명히 push했는데, 잔디가 안심어지는 문제가 생겼다. 찾아보니까 github에 등록된 메일이랑 다른 메일로 되어 있어서 그렇다는데, 나는 문제가 없었다. 그래서 그냥 계정 이름과 이메일을 초기화하고 재설정하니까 해결!

계정 이름, 이메일 확인

git config --list

계정 초기화

git config --global --unset user.name
git config --global --unset user.email

user 이름과 이메일 설정

git config user.name "Your Name"
git config user.email your@email.com
profile
공부 기록

0개의 댓글