1
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でローカルブランチを削除

Posted at

はじめに

学習用のメモになります。

ローカルブランチを削除する手順

ローカルブランチの確認

$ git branch

削除コマンド

# どちらも同じ
$ git branch --delete [ブランチ名]
$ git branch -d [ブランチ名]
  • マージ済みのブランチのみ削除ができる
    マージされていないブランチを削除しようとすると下記のようなエラーがでます
    error: Cannot delete the branch 'ブランチ名' which you are currently on)
  • マージされていないブランチを削除したいときは削除コマンド2を

削除コマンド2

$ git branch -D [ブランチ名]
  • どんなローカルブランチでも削除できる
1
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
1
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?