Notice
Recent Posts
Recent Comments
Link
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Archives
Today
Total
관리 메뉴

오늘은 어제보다 나아지길

[Git] git에서 특정 브런치 clone 하기 본문

[Git]

[Git] git에서 특정 브런치 clone 하기

그녕쓰 2021. 2. 22. 10:04

git은 하나의 브런치 안에 여러 개의 하위 브런치를 만들 수 있다.

그중 특정 브런치만 clone하여 내 pc로 clone 하고 싶으면 

다음 명령어를 사용하면 된다.

git clone -b [가져오고싶은 브런치] --single-branch https://~~[git url 주소]
ex). git clone -b wallet --single-branch https://github.com/myProject/main.git

 

'[Git]' 카테고리의 다른 글

[Git] Git 명령어  (0) 2021.01.26
[Git] .gitignore 파일에 뭘 넣어야 할지 모르겠다면??  (0) 2021.01.06
Comments