git
git 에서 특정 브랜치만 clone 하는 방법
muyeon
2023. 8. 16. 06:27
git 에서 전체 branch 를 clone 하지 않고 특정 branch 하나만 클론하는 것이 가능하다.
git clone -b {branch_name} --single-branch {저장소 URL}
ex) git clone -b dev --single-branch https://github.com/munyeol-Yoon/TicketNest.git
참고링크
https://www.slipp.net/questions/577