Gitのリモートリポジトリのブランチを削除する方法 2013年12月13日 Gitでリモートリポジトリのブランチを削除する方法です。 remote1という名前のリモートリポジトリにhoge_branchというブランチがあるとして。 ローカルブランチを削除。 1 $ git branch -d hoge_branch リモートブランチを削除。 1 $ git push remote1 :hoge_branch または、 1 $ git push --delete remote1 hoge_branch