You delete remote branches with git simply with: git push origin :branchname I noticed I see this deleted branch when I do git branch -a on my laptop. The way you delete the remote branch from your local list of remote branches is with this: git branch -rd origin/branchname References: http://help.github.com/remotes/
All posts in category git
delete stale remote branches with git
Posted by Altug Sahin on November 25, 2011
http://altugsahin.wordpress.com/2011/11/25/delete-stale-remote-branches-with-git/
Simplest git repository setup on windows server
Git is awesome, you should know that. I had to setup a central git repository for a small team in a Windows shop. The simplest setup to get started is as follows. On the Windows Server: Install git (http://code.google.com/p/msysgit) Create and share a folder where you will use it as central repository (C:\repositories\myproject). Setup whatever [...]
Posted by Altug Sahin on October 28, 2011
http://altugsahin.wordpress.com/2011/10/28/simplest-git-repository-setup-on-windows-server/