According to Cordell

Git Notes

Switch to remote branch

git fetch
git checkout -b **local** **remote/branch**

Merge branch back into master

git checkout master
git merge **branchname**

Delete remote branch

git push origin :**branchname**