본문 바로가기
Front-End/git

The current branch feature has no upstream branch.

by kk님 2023. 3. 16.

fatal: The current branch feature has no upstream branch.
To push the current branch and set the remote as upstream, use

    git push --set-upstream origin feature

git push --set-upstream origin feature

  업스트림 저장소에 feature이라는 브랜치가 없으니 해당 명령어로 업스트림에 feature이라는 브랜치를 생성하라는 의미이다.
커맨드 라인에서 알려주는 대로 복사 붙여넣기 하면 해결할 수 있다.