본문 바로가기
Git

[Github] The requested URL returned error: 403 해결 방법

by 자유로운시간 2023. 1. 10.
반응형

remote: Permission to ['repository'] denied to ['user.name']

fatal: unable to access ['repository url']: : The requested URL returned error: 403

 

위와 같은 에러가 발생했을 때,

해결방법을 알아보자.

 


 

1. Regeneration token and check 'repo'

토큰을 재발행하고,

재발행할 때, 'repo'를 체크한다.

 

2. git remote remove origin

origin을 제거한다.

 

3. git remote add origin https://[token]@github.com/[user.name]/[repo.git]

재발행한 토큰을

직접 본인의 git 주소 앞에 넣어주면

에러가 해결된다.

 

 

 

Reference

1. https://newreview.tistory.com/323

반응형

'Git' 카테고리의 다른 글

[Git] credential 파일 디렉토리 설정  (0) 2022.05.09