Dev.log
TIL: Git error:failed to push some refs to
git push를 했을 때 에러가 발생했다. error:failed to push some refs to '...' 이 에러는 로컬 저장소에 없는 파일이 원격 저장소(GitHub)에 있을 때 내 파일을 push 하면 발생한다. 해결방법은 원격 저장소의 파일을 pull 한 후 원격 저장소에 다시 push 하는 것이다. git pull origin master git push origin master 해결 !
2023. 6. 13.