By default, `git clone` doesn’t create local branches that tracks remote branches. To fetch selected remote branch, use the following command: ``` $ git fetch origin branch_name:branch_name ``` If you look closer - those branches are visible in your local repository: ``` $ git branch -a * master remotes/origin/HEAD remotes/origin/master remotes/origin/branch_name ``` You can checkout directly to one of the selected remote branches by including upstream name prefix before branch name. `$ git checkout -b brach_name origin/branch_name`