서버에 로컬브랜치를 강제 업데이트 할때 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)
반응형
'Git' 카테고리의 다른 글
[GIT] Merge 취소 (0) | 2021.12.24 |
---|---|
[GIT] git pull 시 merge 오류가 날때 강제 git pull 덮어쓰기 방법 (0) | 2020.11.25 |
[GIT] Branch 관리 방법 (0) | 2020.11.11 |
[GIT] push 강제 수행 (0) | 2020.11.11 |
[GIT] 기존 프로젝트를 git repository에 연결 하기 (0) | 2020.11.11 |