git checkout -b [feature branch name]
git commit -a -m "Commit message"
git push origin [feature branch name]
--
git branch -D [branch name]
git push origin --delete [branch name]
git reset --hard origin/master
git clean -fd
git reset origin master