팁(트러블슈팅)

GitHub에서 push 했을때 유저 이름이 바뀌어있는경우 해결

JUNFUTURE 2024. 9. 20. 01:26

깃허브를 사용할때

원격 repository 를 clone해서 쓰거나 fork 이후에

 

나의 작업물들을 remote repository에 push 후에

이름이 이상하게 기록된 경우가 있을 수 있다.

 

What The... Im not gnbon !!! @gnbon

 

 

그럴땐 아래와 같이 해결해주면 된다.

// check my name & email
git config user.name                       
git config user.email

// change my name & email
git config --local user.name junfuture1103 
git config --local user.email junhak1103@naver.com