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가 적용된다
'IT (프론트엔드)' 카테고리의 다른 글
[TIL] Execution context (실행 컨텍스트) (0) | 2024.02.17 |
---|---|
Javascript vs Typescript : 어느 것을 써야 할지 고민이 된다면? (0) | 2023.10.28 |
스크롤 동작 최적화를 위한 옵션, "Passive event listener" (0) | 2023.09.23 |
[TIL] Local Storage vs. Session Storage (vs. Cookie) (0) | 2023.06.03 |
[Python] 얕은복사 vs 깊은복사 (0) | 2023.02.11 |