I cloned a Git repository, which contains about five branches. However, when I do git branch I only see one of them:
git branch
$ git branch * master
git remote add origin https://yourBitbucketLink git fetch origin git checkout -b yourNewLocalBranchName origin/requiredRemoteBranch (use tab :D)
Now locally your yourNewLocalBranchName is your requiredRemoteBranch.
yourNewLocalBranchName
requiredRemoteBranch