Github等に不要なブランチがあって、コマンドで削除したい場合に利用します。
git push --delete origin branch-name # or git push -d origin branch-name
以上で本題は終了。
ちなみに、ローカルのブランチを削除する場合は、以下の2種類のコマンドがある。
git branch -D branch-name git branch -d branch-name # マージされていないブランチは削除できない
git branch -a