컴공생의 다이어리
[Git] 깃 특정 브랜치(branch)만 clone하는 방법 본문
깃(Git) 특정 브랜치(branch)만 clone하는 방법
git clone -b {브랜치이름} --single-branch {저장소 url} 을 git bash 창에 입력해주면 된다.
git clone -b {branch_name} --single-branch {저장소 URL}
# ex) git clone -b release --single-branch https://github.com/CodeDiary18/Test
https://www.slipp.net/questions/577
728x90
반응형
'Development > Git' 카테고리의 다른 글
[GitLab] 깃랩 fatal authentication failed 오류 (0) | 2021.09.13 |
---|---|
[Git] 깃 히스토리(커밋(Commit)의 날짜와 시간) 변경 : filter-branch 사용 (1) | 2021.08.26 |
[GitHub] 깃허브 리포지토리(Repository) 합치기 (0) | 2021.08.04 |
[GitHub] 깃허브를 데이터 저장소처럼 활용 - raw.githubusercontent.com (0) | 2021.07.23 |
[Git] 깃 원격저장소(깃허브)에 올라간 커밋 제거(되돌리기) (1) | 2021.07.20 |
Comments