특정 브랜치 클론하기
1 | git clone -b {브랜치명} --single-branch {저장소} |
- 저장소에 여러 브랜치가 있는데, 특정 하나의 브랜치만 클론하고 싶을때!
git clone -b docker –single-branch https://github.com/chinsun9/2020-web-test.git
- https://github.com/chinsun9/2020-web-test.git 저장소의 docker라는 브랜치를 클론하는 명령이다