18
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【Git】git push --delete origin {削除したいリモートブランチ名} →リモートブランチの削除

Last updated at Posted at 2016-03-15

しばしば調べてる気がするのでメモ。
タイトル見ただけでほぼ分かるようにしてみた。

リモートブランチを削除する

リモートブランチ hoge を削除したい場合

$ git push origin :hoge

コロンの後のhogeは削除したいリモートブランチ名を指定します。

$ git push origin :{削除したいリモートブランチ名}

もしくは

$ git push --delete origin hoge
$ git push --delete origin {削除したいリモートブランチ名}

参考

参考にさせていただきました。今日も先人様に感謝。

とてもわかりやすいです↓

以上

18
12
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
18
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?