728x90
처음 클론할때 --single-branch 를 해서 원격 브랜치가 하나밖에 없는 경우,
git remote set-branches --add origin newbranch
git fetch origin
git checkout --track origin/newbranch
위의 명령어를 통해 원격 브랜치를 가져올 수 있었다.
다른 블로그에도 비슷한 방법이 있는데,
git remote set-branches --add origin [remote-branch]
git fetch origin [remote-branch]:[local-branch]
다음과 같이 해도 된다
출처 : https://www.slipp.net/questions/605
728x90
'IT > Git' 카테고리의 다른 글
[Git] stash 일부만 하기 (0) | 2022.12.16 |
---|---|
[Git] 브랜치 병합 (0) | 2022.08.12 |
[Git] 브랜치 생성, 이동, 확인 (0) | 2022.08.12 |
[Git] 작업 되돌리기 (0) | 2022.08.12 |
[Git] 커밋 메세지 수정 및 상세보기 (0) | 2022.08.11 |