Git

[GIT] git push --force 오류

먹세 2023. 2. 10. 19:45

서버에 로컬브랜치를 강제 업데이트 할때 git push --force 를 사용하는데, 이 때 아래와 같은 오류가 난다면

$ git push --force
fatal: The current branch master has no upstream branch.
To push the current branch and set the remote as upstream, use

    git push --set-upstream origin master

아래와 같이 해결

$ git push origin +master

Total 0 (delta 0), reused 0 (delta 0), pack-reused 0
To https://github.com/my.git
 + e6f792f46...ef4679889 master -> master (forced update)

 

반응형