몽땅뚝딱 개발자

[GIT] error: failed to push some refs to '*' 에러해결 본문

에러일지/GIT

[GIT] error: failed to push some refs to '*' 에러해결

레오나르도 다빈츠 2021. 6. 14. 14:46

 

에러

 ! [rejected]        master -> master (non-fast-forward)
error: failed to push some refs to 'https://github.com/hvsundev/vue-popup.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.

 

 

 

 

해결

branch 이름 앞에 +를 붙여준다.

git push origin master  ▶  git push origin +master

 

 

 

 

 


개인적으로 공부한 내용을 정리하는 블로그로
잘못된 개념을 게시하지않도록 주의하고 있으나 오류가 있을 수 있습니다.

 

 

Comments