본문 바로가기
만능 에러해결 주머니

[Github] 깃허브 push 에러 (자격없음, Git push: Missing or invalid credential ...)

by 임대추 2020. 11. 18.

 

안녕하세요 오랜만입니다.

오늘 깃허브 사용중 에러가 발생하여 검색을 통해 해결했는데 해결방법을 공유하고자합니다.

 

에러명 :

Git push: Missing or invalid credentials. fatal: Authentication failed for 'https://github.com/example/example.git'

블라블라

 

위와 같이 에러가 발생합니다. 

해결하는 방법은 간단한데 

 

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

# 위와 같은 코드를 사용 후 재부팅

위의 코드를 실행하신 후 컴퓨터를 재부팅 하시면 됩니다.

그럼 로그인하라는 내용이나오고 따라서 진행하시면 에러없이 push, pull 하실 수 있습니다.

반응형

댓글