세상을 바꾸는 개발자

[Git] 깃 오류 해결 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

[Git] 깃 오류 해결 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

헬창코딩 2021. 7. 16. 19:55

안녕하세요~ 헬창코딩입니다.

깃을 처음 설치하고 로컬 저장소와 원격 저장소를 만들어서  푸시 테스트할 때 가끔 이런 메시지를 볼 수 있습니다.

$ git push
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 --set-upstream origin master

 

이렇게 코드를 입력하시면 

$ git push --set-upstream origin master
...
To https://url-to-remote-origin
   1561943..f8357d9  master -> master
Branch 'master' set up to track remote branch 'master' from 'origin'.

그 후 다시 푸시를 하게 되면

$ git push
Enumerating objects: 5, done.
Counting objects: 100% (5/5), done.
Delta compression using up to 8 threads
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 349 bytes | 349.00 KiB/s, done.
Total 3 (delta 1), reused 0 (delta 0), pack-reused 0
To https://url-to-remote-origin
   f8357d9..c29db9a  master -> master

잘 되는 것을 보실 수 있습니다.

 

'기타 > Git' 카테고리의 다른 글

[Git] 깃 명령어 정리  (3) 2021.07.19
[Git] 깃 설치하기 (MAC)  (3) 2021.07.14
[Git] 깃 개념과 장점  (1) 2021.07.14
Comments