Addendum: to create a remote branch, speak this arcane spell: git push origin master:refs/heads/<branch name> git branch --track <branch name> origin/<branch name> To delete a remote branch, speak this arcane spell: git push origin :refs/heads/<branch name> git branch -d <branch name> -- William <wmorgan-ditz at masanjin.net>