[Git오류] fatal: Authentication failed for ...
오류발생상황
git add. git commit -m {commitMessage} git push origin {branchName} * 여기서 에러가 발생
오류메시지
remote: Invalid username or password. fatal: Authentication failed for 'https://github.com/limo-sum/{repository}.git/'
해결방법
git config --system --unset credential.helper
검색해보니 이 명령어를 입력하면 다들 해결이 되었는데,
나는 어째서인지 계속 Permission denied만 돌아왔다. 왜... 어째서...?
찾아보니 global 영역 설정이 문제를 일으킨 경우 --global로 처리해야 한다. 위에서 해결이 되지 않는다면 명령어로 해결!
git config --global --unset credential.helper
Author And Source
이 문제에 관하여([Git오류] fatal: Authentication failed for ...), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@i01029407043/Git오류-fatal-Authentication-failed-for-저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)