To view original repository:
$ git remote show origin
To push the repo to remote master
$ git push origin master
To branch a repo after clone
Clone repo: $ git clone <repository_url>
List all branches: $ git branch -a
Create new branch locally: $ git branch new_branch_name
Push new branch to remote origin repository
$ git push origin new_branch_name
What do you think?