[Git] Cloning certain branch
This post is written by YoungJ-Baek
You can find more posts about Git
easily by searching the Git
tag.
1. Preface
Sometimes, you may want to clone certain branch of the repository. If other team or branch implement some good functions, it would be better to clone it rather than the master branch. In my case, our team usually collaborate by dividing into two parts, and sometimes I want to start my branch with other part’s. In this post, you can figure out how to clone the certain branch, not the master.
2. Cloning Certain Branch
Command
git clone -b {branch name} --single-branch {repository URL}
Example
git clone -b jm --single-branch https://github.com/V-SLAMMERS/LDSO
In this case, you can clone jm
branch of LDSO
repository of V-SLAMMERS
.
Leave a comment