$ git checkout master
$ git pull
$ git checkout -b branchName
Delete and then re-create the branchName branch
#this deletes your local copy of the branch
$ git branch -d branchName
#this deletes the branch from the remote repository
$ git push origin : branchName
$ git checkout master
$ git pull
$ git checkout -b branchName