git fatal: Authentication failed
- git 비밀번호 변경 시 또는 git 설정정보 변경(토큰 만료) 등에 따른 오류
해결법 1
- 비밀번호 재 입력
> git config --system --unset credential.helper
- 다음과 같이 비밀번호 입력 후 사용 가능
해결법 2
- 토근 재 발급
- Settings > Developer settings > Personal access tokens > New personal access token
- repo 체크박스 활성화
- 다음과 같이 토큰 생성
git config --global user.name `id`
git config --global user.password `token`
- 토큰 입력
참고 정보
Author And Source
이 문제에 관하여(git fatal: Authentication failed), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@jeon3029/git-fatal-Authentication-failed저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)