git fatal: Authentication failed

태빵·2022년 4월 4일
0
post-thumbnail

  • 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`
  • 토큰 입력

참고 정보

profile
hello world

0개의 댓글