## After cloning the repo, run:
`cd myproject`
`git branch -a`
## You'll see this:
* master (_current branch_)
* remotes/origin/HEAD
* remotes/origin/master
* remotes/origin/v1.0-stable
* remotes/origin/experimental
## If you want to work on remote branch, you'll need to create a local tracking branch:
`git checkout -b experimental origin/experimental`
## Verify whether you are in the desired branch by the following command:
`git branch`
## The output will like this:
* experimental (_current branch_)
* master
* some branch2
* some branch3