..
Git: Clone a specific branch
Clone the repository
git clone repository_url
List all branches
git branch -a
Checkout the branch that you want
git checkout name_of_branch
Or a single branch (available on git version 1.8.X or later):
git clone -b branch --single-branch git://github/repository.git
:tada: