Mitomex Blog

リモートにあるブランチを削除する方法

2021-02-02

Git のリモートにあるブランチを削除するには以下のようにする。

git push --delete origin <ブランチ名>

以下でもできる。

git push origin :<ブランチ名>