인생은 속도가 아니라 방향이다

[Git] ! [rejected] master -> master (fetch first) 에러 해결 본문

형상관리/Git

[Git] ! [rejected] master -> master (fetch first) 에러 해결

기록하는 동구 2020. 10. 26. 18:08
반응형

안녕하세요, 기록하는 동구입니다.  

 

Git Repository에 있었던 프로젝트를 다 지워버리고 그 전에껄 지우고 새로운 프로젝트를 푸쉬하려했는데 푸쉬가 안된다!

 

 

➜ test git:(master) git push -u origin master To https://github.com/donggu1105/test.git
! [rejected] master -> master (fetch first) error: failed to push some refs to 'https://github.com/donggu1105/test.git'
hint: Updates were rejected because the remote contains work that you do hint: not have locally.
This is usually caused by another repository pushing hint: to the same ref.
You may want to first integrate the remote changes hint: (e.g., 'git pull ...') before pushing again. hint: See the 'Note about fast-forwards' in 'git push --help' for details.

 

 

 

 

띠용 이런 오류가 발생했다.  알고보니 기존데이터가 손실될수있어서 푸쉬를 막은것이다.

 

 

아래 명령으로 강제로 푸쉬해주면 된다. 

 

 

$ git push origin +master

 

 

깔끔하게 해결!

 

 

 

반응형
Comments