Create Local and Remote Git Branch
Back to current version Restore this version

Locally, to create and checkout the branch do -

$ git checkout -b your_branch

Then, to push your branch to origin, do -

$ git push -u origin your_branch

Git