반응형
fatal: 'feature/token-backend' 브랜치에 업스트림 정보가 없습니다
fatal: Branch 'branch명' has no upstream information
위 에러는
git branch --unset-upstream
명령어를 사용했을 때 해당 local branch에
upstream 정보가 없을 경우 발생하는데
git branch -vv 를 해보면
해당 branch와 연결된 remote branch 정보가
없는 것이 보일텐데
remote branch가 지정되어 있지 않는데
그걸 unset 하라니
의미가 없는 명령어라 에러가 발생하게 된다
git branch --set-upstream-to origin/branch명
을 통해 upstream branch를 지정해주면
git branch --unset-upstream 을 통해
upstream branch를 변경할 수 있게 된다
반응형
'Error & Fix' 카테고리의 다른 글
이클립스 The import java.util cannot be resolved 에러 해결방법 (0) | 2022.07.11 |
---|---|
자바 Unreachable Code 에러 해결방법 (0) | 2022.05.22 |
현재 브랜치가 'branch명' 기반이지만, 업스트림이 없어졌습니다. (git branch --unset-upstream) (0) | 2022.05.22 |
@Column(s) not allowed on a @OneToOne property 해결방법 (0) | 2022.05.22 |
@OneToOne or @ManyToOne on references an unknown entity 에러 해결방법 (0) | 2022.05.22 |
댓글