0
0

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 3 years have passed since last update.

【Git】リモートのブランチとローカルのブランチをコマンドで削除する方法

Last updated at Posted at 2021-02-19

###リモートのブランチとローカルのブランチをコマンドで削除する方法について

####・ローカルブランチの削除
他のブランチに移動(checkout)した後に以下を実行。

$ git branch -D <ブランチ名>

  • ブランチ名は複数記載可能
  • -Dは強制削除 (-d -f)
    • -d: --delete
    • -f: --force

▼実例

$ git branch -a
* master
  test
  test2
  remotes/main/master
  remotes/main/test
  remotes/main/test2

$ git branch -D test test2
Deleted branch test (was 0bfac69).
Deleted branch test2 (was 6ae0aa4).

$ git branch -a
* master
  remotes/main/master
  remotes/main/test
  remotes/main/test2

testとtest2ブランチが削除できた。


####・リモートブランチの削除 リモートブランチの中身を変化させる場合は`push`を使う。

$ git push --delete <リモートレポジトリ名> <ブランチ名>

  • --delte は -d と同じ

▼その他の方法

$ git push <リモートレポジトリ名> :<ブランチ名>

これは、git push <リモートレポジトリ名> <ローカルブランチ名>:<リモートブランチ名>を応用したコマンド。

指定したローカルブランチの内容をリモートレポジトリにプッシュする。ローカルブランチに空を指定すれば、リモートブランチは空で上書きされ、消える。

▼実例

$ git branch -a
* master
  remotes/main/master
  remotes/main/test
  remotes/main/test2

$ git push -d main test
To https://github.com/git-test.git
 - [deleted]         test

$ git push main :test2
To https://github.com/git-test.git
 - [deleted]         test2

$ git branch -a
* master
  remotes/main/master

remotes/main/testremotes/main/test2が削除できた。

0
0
0

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?