문제 상황
remote 을 새롭게 세팅하고 push을 하려고 하니까 아래와 같은 오류 메시지가 나왔다.
error: RPC failed; HTTP 400 curl 22 The requested URL returned error: 400
문제 원인
소스 코드를 git에 push 할 때 해당 주소에 대한 권한이 없는 것이 문제이다.
문제 해결
repository 접근 권한 인증을 받는다.
git remote set-url origin https://github-username@github.com/github-username/github-repository-name.git
- github-username : github에서 사용하는 username을 넣는다.
- github-repository-name : repository(레포지토리) 이름을 넣는다.