본문 바로가기
Git

[Git] Git 특정 Branch Clone 하기

by Dani K 2021. 11. 11.

git으로 프로젝트 관리시 브런치의 코드를 받는다면, 기본적으로 가장 상위(master)브런치가 clone 되어 checkout을 통해 브런치를 이동하게 된다. 이 과정을 생략하고, 특정 브런치를 clone 하고자 할 때는 아래 명령어를 이용하자.

 

$ git clone -b <branch> <remote_repo>

 

$ git clone -b dev https://github.com/keemdx/test.git

 

'Git' 카테고리의 다른 글

[Git] git push error : 'origin' does not appear to be a git repository  (0) 2021.09.08

댓글