728x90
[Git] git push --set-upstream origin main
git에서 push를 할 때, 다음과 같은 에러가 발생했다.
이유를 찾아보니 원격 저장소에 기본 branch 설정을 해주지 않아서라고 한다.
To push the current branch and set the remote as upstream, use
git push --set-upstream origin main
To have this happen automatically for branches without a tracking
upstream, see 'push.autoSetupRemote' in 'git help config'.
해결방법은 다음과 같이 기본 브랜치를 설정해주거나,
git push --set-upstream origin main
원격 저장소를 명시한 후 push를 해주면 된다고 한다.
git push origin main
참고
반응형
'💽 CICD > Git' 카테고리의 다른 글
[Git] Script에 권한 준 채로 push하기 (0) | 2024.02.13 |
---|---|
[Git] 작업 디렉토리가 아닌 곳에서 git 명령어 사용하기 (0) | 2024.02.06 |
[Git] Gitlab API로 Merge Request 업데이트 하기 (0) | 2024.01.31 |
[Gitlab] Gitlab API로 Merge Request 가져오기 (0) | 2024.01.26 |
[Git] Stash (0) | 2024.01.11 |