"Life is Full of Possibilities" - Soul, 2020

IT (프론트엔드 외)

[Git] Git push error

m2ndy 2023. 6. 21. 00:04

 
git pull로 기존 레파지토리를 로컬로 받은 뒤
새로운 폴더와 파일을 만들어 git push를 하려고 하니 다음과 같은 오류가 뜬다.
 
Updates were rejected because the tip of your current branch is behind ~
 

$ git push origin master
To https://github.com/[레파지토리 이름]
 ! [rejected]        master -> master (non-fast-forward)
error: failed to push some refs to 'https://github.com/[레파지토리 이름]'
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.

 
이 상태에서 git pull origin master를 한 뒤 git push를 해도 같은 에러가 뜰 때,
 
 

 git push -u origin +master

 
git push -u origin +master 를 입력하여 강제로 git push가 가능하다
 
- branch명 앞에 + 추가
 
 
 
단, 업로드 하려는 폴더 외에도 모든 파일들에 같은 commit message가 적용된다
 
 
 
 
 
참고 : https://doozi316.github.io/errorlog/2019/09/30/error1/