Notice
Recent Posts
Recent Comments
«   2025/05   »
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 31
Tags
more
Archives
Today
Total
관리 메뉴

개발

Git 특정 브랜치 clone (cli) 본문

linux

Git 특정 브랜치 clone (cli)

오키쿠마 2017. 10. 27. 11:53

브렌치 클론 해오기

git clone -b <branch> <remote_repo>


예 : (브랜치 이름 : BRANCH1, git 저장소 주소 : http://mymygit.com/Project/src.git )

git clone -b BRANCH1 http://mymygit.com/Project/src.git


Comments