본문 바로가기

GIT

특정 Branch 만 git clone 받기

 

Github Repository 의 특정 Branch 만 Clone 하기

Github Repository 를 전부 복사하는 경우도 필요하지만, 특정 Branch 만 가져오고 싶은 경우가 있습니다.

 

git clone -b [브랜치이름] --single-branch [Repository 이름]

 

Github [Repository] 내의 특정 [Branch] 만을 Clone 받게 됩니다.

'GIT' 카테고리의 다른 글

[GIT] Git pull 전략 (default, --ff -only, --rebase)  (2) 2020.11.24
[GIT] Git merge 충돌 발생 시 해결  (0) 2020.04.27