Programming/Error

(Mac OS) git The requested URL returned error: 403 해결 방법

Jan92 2021. 8. 15. 00:56
반응형

The requested URL returned error: 403

 

프로젝트 작업 후 git 명령어를 사용하는데 오류가 발생하였습니다.

이유는 github에서 8월 13일부터 password 인증을 중단했기 때문인데요.

 

Please use a personal access token instead.

패스워드 인증 대신에 개인 엑세스액세스 토큰을 생성하여 인증을 하는 방식으로 변경되었으니 액세스 토큰을 이용하라고 합니다.

 

 

https://docs.github.com/en/github/authenticating-to-github/keeping-your-account-and-data-secure/creating-a-personal-access-token

 

Creating a personal access token - GitHub Docs

Personal access tokens (PATs) are an alternative to using passwords for authentication to GitHub when using the GitHub API or the command line. If you want to use a PAT to access resources owned by an organization that uses SAML SSO, you must authorize the

docs.github.com

액세스 토큰 생성 GitHub 문서입니다. 참고하시면 금방 생성할 수 있습니다.

 


 

 

access token을 생성했다면 이 토큰을 git에 적용시켜야 합니다.

 

키체인 접근.app

Spotlight 검색을 이용하여 '키체인 접근.app'을 실행합니다.

 

 

github.com

github.com을 검색하면 현재 github에 사용되고 있는 키체인을 찾을 수 있습니다.

 

 

암호 보기

암호 보기를 클릭해보면 기존에 사용하던 github password가 저장된 것을 확인할 수 있습니다.

이 부분을 위에서 생성한 access token으로 변경합니다.

 

이후 다시 깃 명령어를 사용하면 정상적으로 동작하는 것을 확인할 수 있습니다.

반응형