-
git을 사용하다 브랜치 전체를 clone하지 않고 특정 브랜치 하나만 clone하는 것이 필요할 때가 있다. $ git clone -b {branch_name} --single-branch {저장소 URL} 예: git clone -b tempbranch --single-branch https://github.com/test/testtest 참고 git에서 특정 브랜치만 clone하기 (tistory.com)