- Today
- Total
Notice
Recent Posts
Recent Comments
Link
250x250
프로그래밍 농장
error:failed to push some refs to [ git error ] 본문
728x90
git push를 수행했을때 위와 같이 error : failed to push some refs to . . 에러문제가 발생하는 경우가 있다.
이는 원격저장소(github)에 내 로컬(컴퓨터)에는 없는 파일이 있을 떄 내 파일을 push 하면 발생하는 오류이다.
이럴때에는 원격저장소에서 내 로컬에 저장하지않은 파일을 한번 pull 해준다음 원격저장소에 다시 push 해야한다.
먼저 아래와 같이 원격저장소에서 내컴퓨터로 pull 땡겨온다
git pull origin master
origin ? : 일반적인 원격저장소 별칭
이후 다시 아래와같이 add/commit/push를 진행해준다.
git push origin master
728x90