본문 바로가기
개발/Git

[Git] Please use a personal access token instead 에러 해결

by 윤호 2021. 7. 28.

remote: Please see https://github.blog/2020-07-30-token-authentication-requirements-for-api-and-git-operations/ for more information.
fatal: unable to access 'https://github.com/yoonho0922/Algorithm.git/': The requested URL returned error: 403

 

깃 허브에서 최근에 git 로그인을 기존 아이디/패스워드에서 아이디/access token 으로 바꾸면서 발생한 문제인듯하다.

access token에 관한 얘기는 다른 블로그들에서 간단히 다루니, 여기서는 당장에 원격 저장소를 접근하는 방법을 알아보자.

 

1. Setting->Developer settings->Personal access tokens 에서 토큰을 생성한다.

 

2. 생성한 토큰으로 깃에 로그인한다.

터미널에서 명령어로 할 순 없고, 맥의 경우 키체인을 사용하여 변경할 수 있다.

다음 블로그 글을 참조해서 깃 계정의 비밀번호 입력을 access token 으로 변경한다.

 

그리고 원래 했던 git 작업을 수행하면 원격저장소에 잘 올라간다.

댓글