본문 바로가기
git

[Git] git clone 특정 브랜치

by clolee 2023. 11. 1.

git 특정 브랜치 clone 하기

 

  • 리포지토리를 클론한 다음 모든 브랜치들을 가져온다(fetch). 그리고나서 특정한 브랜치로 전환(checkout)한다.
git clone --branch <branchname> <remote-repo-url>

또는

git clone -b <branchname> <remote-repo-url>

 

 

참고 :

https://www.freecodecamp.org/korean/news/git-clone-branch-how-to-clone-a-specific-branch/

 

 

 

'git' 카테고리의 다른 글

[Git] git 특정 커밋 다운  (0) 2024.05.08
[Git] git clone change directory name  (1) 2024.01.03
[Git] 강제 pull 하기  (0) 2023.11.02
[Git] git 원격저장소 연결하기  (0) 2022.08.18

댓글