Create a new branch:
$ git branch <branch_name>
Checkout branch:
$ git checkout <branch_name>
Create new branch and checkout:
$ git checkout -b <branch_name>
Merge a branch into master
$ git checkout master
$ git merge new-branch
$ git branch -d new-branch