본문 바로가기

2_개발노트

[GIT] ! [rejected] main -> main (non-fast-forward) 에러 해결

반응형

에러 내용

! [rejected]        main -> main (non-fast-forward)
error: failed to push some refs to '
https://github.com/******/*****.git'


상황 

> github에 Repository 생성 후 최초 커밋을 위해 push를 하던 중 발생

git init
git branch -m main
git remote add origin "github주소"
git add .
git commit -m "first commit"
git push -u origin main

해결

> 강제 푸시로 해결 (최초 커밋이기에 문제 없음)

git push -u origin main -- force
반응형