[Git] The requested URL returned error: 403 Push 에러 해결 방법

해결방법


해결 방법은 2가지가 존재한다.

  1. Remote URL 에 유저이름 적용
  2. 계정 삭제후 재등록 (Default Account 변경)

1. Remote URL 에 유저이름 적용


Untitled

[계정]@[git 클론주소] 로 remote 를 설정한다.

git remote set-url origin https://[git 계정]@[git clone 주소]

git remote -v 로 리스트가 뜨는 지 확인한다.

Untitled