Create a git branch
git checkout -b branch-name
Push the branch to remote(git server)
git push origin branch-name
Show currently present branches
git branch -a
Show currently present urls on remote(git server)
git remote show origin
CLONE a remote branch
git clone -b branch-name user@git.server.com:/home/repos/git/repo.git