push 시 error 403 해결방법
나는 IDE에 내장된 git 기능이나 git bash로 버전관리를 하는데 가끔 push 할때마다 error:403 이 나곤한다. remote 권한이 없을때 나타나는 error인데 git bash에서 명령어를 입력한다.
Git 명령어
$ git remote set-url origin https://username:userpassword@github.com/user/.git
으로 remote(원격저장소)의 url을 변경해준 뒤에,
$ git push origin master
푸시 해주면 끝이다.