에러
github에 내 Local 에 없는 파일이 있고, 내 파일을 push 할 면 발생하는 오류이다.
! [rejected] main -> main (non-fast-forward)
error: failed to push some refs to 'https://github.com/jcy8206/usedHunter.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.
해결
git pull 하고 git push 하면 된다.
이래도 안 되면
git push -f origin -f 옵션을 사용하면 강제로 push할 수 있다.
'Git' 카테고리의 다른 글
Git - git 의 기본 사용법과 원리 (0) | 2022.10.11 |
---|---|
Git - 파일의 stage 상태와 unstage 상태 (0) | 2022.09.29 |
원격의 브랜치 다루기 (0) | 2022.07.31 |
push와 pull (0) | 2022.07.31 |
원격 저장소 사용하기 (0) | 2022.07.31 |