Errors/Non-AI

Git Push 시 발생하는 403 Error 해결하기

Cori 2024. 5. 20. 10:54

터미널에서 git push 하면 발생하는 'unable to access ~.git: The requested URL returned error: 403' ERROR !

다음과 같이 설정해주자.  

git remote -v    # 원격 저장소 리스트 확인

# 원격 저장소 주소 재설정 
git remote set-url origin https://[사용자이름]@github.com/[사용자이름]/[저장소이름].git

이후 add, commit, push하면 정상적으로 push할 수 있다.