2014 06 09 19 06 [git] 刪除在 git server 上的分支

刪除 git local branch 只需要下
> git branch -d branch_name
但是下完之後, git server 上面的 branch 還是依然存在.
問了一下google大神, 才知道要把這個 branch push 上 git server,
這樣才能把server 上的branch一起移掉.
> git push origin :branch_name

Ref: http://gitready.com/beginner/2009/02/02/push-and-delete-branches.html