git을 single branch로 clone한 후 새로운 브랜츠를 추가하고 싶은 경우

2018-09-13 10:06

git에서 브랜치가 너무 많아 특정 브랜치만 추적하도록 clone할 수 있다.

git clone -b <branch name> --single-branch <github url> <target directory>

위와 같이 clone한 후 새로운 브랜치를 추가하고 싶은 경우가 있으면 다음과 같이 새로운 브랜치를 추가할 수 있다.

git remote set-branches --add origin [remote-branch]
git fetch origin [remote-branch]:[local-branch]

0개의 의견 from SLiPP

의견 추가하기

연관태그

← 목록으로