Git Push 오류 해결하기: non-fast-forward와 그 해결책

2025. 3. 19. 10:15개발/개발 필기

반응형

git error

 

Git을 사용하다 보면 git push 명령어 실행 시

! [rejected] main -> main (non-fast-forward) 오류를 마주칠 수 있습니다.

 

이는 여러분의 로컬 main 브랜치가 원격 저장소의 main 브랜치보다 뒤쳐져 있음을 의미합니다.

 

즉, 다른 사람이 여러분이 마지막으로 pull 한 이후로 원격 저장소에 변경 사항을 푸시했기 때문입니다.

 

git push -f (강제 푸시)는 다른 사람의 작업 내용을 덮어쓸 위험이 있으므로 권장하지 않습니다.

 git push -f origin
 
 ! [rejected]        main -> main (non-fast-forward)
error: failed to push some refs to '깃주소'

 

데이터를 받으라는 힌트가 나와요

hint: Updates were rejected because the tip of your current branch is behind
hint: 'git pull ...') before pushing again.

 

해결책 (권장):

  1. git pull origin main: 이 명령어는 원격 main 브랜치의 최신 변경 사항을 가져와 여러분의 로컬 main 브랜치에 병합합니다. 이렇게 하면 로컬 복사본이 최신 상태가 됩니다. 병합 충돌이 발생하면 수동으로 해결해야 합니다.
  2. git push origin main: 성공적으로 pull 한 후, 이 명령어를 사용하여 로컬 변경 사항을 원격 저장소에 푸시합니다.
반응형

git pull이 실패하는 경우:

git pull origin main --allow-unrelated-histories

이렇게 pull 받으면 업로드가 가능합니다

From ~~~~깃주소
 * branch            main       -> FETCH_HEAD
Merge made by the 'recursive' strategy.
 README.md | 93 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

 

PS D:\07.work\code\healsCheck> git push main
fatal: 'main' does not appear to be a git repository
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
Enumerating objects: 17, done.
Counting objects: 100% (17/17), done.
Compressing objects: 100% (16/16), done.
Writing objects: 100% (16/16), 7.91 KiB | 3.96 MiB/s, done.
Total 16 (delta 1), reused 0 (delta 0), pack-reused 0
To 깃주소
   4240981..7224391  main -> main

 

이 옵션은 브랜치의 히스토리가 완전히 다를 때 (예: 완전히 별개의 히스토리를 가진 브랜치를 병합하는 경우) 필요합니다. 하지만 주의해서 사용해야 합니다. 잘못 사용하면 복잡한 히스토리를 만들 수 있습니다.

반응형