본문 바로가기
Programming/git, svn

[github] public github repo push error

by 근육곰돌이 2022. 5. 17.
728x90

잘쓰던 github public주소가 오늘따라 왠지.. 어색하게.. 안된다...

증상은 아래와 같다..

 

증상

403.. 너무 두루뭉술하네요 ㅋㅋ

$ git push origin main
remote: Permission to nk915/hexagonal_msa.git denied to hanssak.
fatal: unable to access 'https://github.com/nk915/hexagonal_msa.git/': The requested URL returned error: 403

 

(아래와 같이) 한참을 찾아 해보아도..  안된다...

1. https 주소 변경
2. ssh 인증형태 변경
3. 저장소 권한 허용
4. 유저변경

 

해결

그러던 중 Windows 자격증명에 문제가 있을수있다는 블로그에 혹하게 되었고, 아래의 링크대로 해보니 된다..

오.. 살았다.. 감사합니다.. ㅠㅠ

https://techstock.biz/Git-Github/Git-push-denied/

 

Github에 Push가 거부될때

깃허브를 이용해 복수의 블로그를 만들다보니 한 컴퓨터에서 여러 깃허브 유저에 푸쉬작업을 해야할 상황이 생겼다. git config --global user.email "change user.email" git config --global user.name "change user.name"

techstock.biz

 

 

추후

혹시 해결을 한 후 새로운 자격증명을 해야할수도 있다.

예를들면 아래와 같이 인증방법이 변경되었다는 에러말이다.. 이건 겪어보고 포스팅한글이 있어서 이에서 보시면 됩니다.

Logon failed, use ctrl+c to cancel basic credential prompt.
remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.

위의 해결방법: https://musclebear.tistory.com/144

 

[github] Support for password authentication was removed 조치

에러 발생 (내용) remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. remote: Please see https://github.blog/2020-12-15-token-authe..

musclebear.tistory.com

 

 

 

반응형