로컬 저장소에서 작업하다보면 원격 저장소의 특정한 브랜치만 clone 해야하는 경우가 있다.
git clone -b BRANCH_NAME --single-branch REPOSITPRY
위와 같이 --single-branch
옵션을 부여해 원하는 브랜치 내용만 클론할 수 있다.
example
develop
이라는 브랜치만 클론하고 싶은 경우 아래처럼 명령어를 입력하면 된다.
git clone -b develop --single-branch https://github.com/sangm1n/example.git