형상관리/Git
[Git] Git, GitLab에서 특정 브랜치만 클론하는 방법
기록하는 동구
2020. 2. 2. 18:57
반응형
최종브랜치에 있는 master브랜치가 아닌 개발중인 다른 브랜치만 내 로컬에 clone 하고 싶어졌다.
명령어는,
$git clone -b [특정브랜치] --single-branch [저장소URL]
ex)만약 특정브랜치 test만 클론하고 싶다면 아래 명령어를 사용하면된다.
$git clone -b test --single-branch https://gitlab.com/wiju_repo_api_group/noljang-biz-2.git
반응형