본문 바로가기
도구/Git

[Git] [rejected] master -> master (non-fast-forward) 해결 방법(강제push)

by 작은소행성 2021. 2. 19.

 

git 을 다른 아이디로 다시 연결하고 git push 작업을 진행하려고 했다. 

 

 

git push --set-upstream origin master

 

위의 명령어로 실행해도 rejected 라면 push가 되지 않았다 

 

git push --set-upstream origin +master

 

+ 를 붙이면 강제 push 라서

 

git pull 명령어를 실행 후 git push 를 실행할 것을 추천드린다. 

 

 

 

반응형