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/
'IT (프론트엔드 외)' 카테고리의 다른 글
[SpringBoot] test를 찾지 못하는 에러 발생, Spring boot 3.x 및 Java 17 설치 (0) | 2024.01.26 |
---|---|
[Django] Migration (0) | 2023.04.15 |
[Python] 얕은복사 vs 깊은복사 (0) | 2023.02.11 |