IT/Git
[Git] 원격 브랜치 가져오기
올빼밋.
2022. 9. 20. 15:01
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