I have a repository on GitHub. It contains master and one branch.
master
When I clone it, I obtain only master and do not see my branch.
Why i
Use:
git branch -r
This will show you all remote branches. You can then do:
git branch -t my_local_branch origin/remote_branch git checkout my_local_branch
Then do your work and then push to the remote branch.