12
9

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】ローカルのブランチを削除しようとしたら「Cannot delete branch 'ブランチ名' checked out at...」とエラーが出た。

Posted at

自分用のメモとして残します。

ブランチを削除しようとしたら、下記のようなエラーが表示された。

$ git branch -D hogeブランチ
error: Cannot delete branch 'hogeブランチ' checked out at '作業フォルダパス'

結論としては、削除しようとしているブランチが現在チェックアウトされており、自分自身が削除予定ブランチにいるため、エラーが表示された。

#■やり方

###1.とりあえず、マスターブランチに移動。
削除したいブランチ以外であればどこでもOK

git checkout master

###2.ブランチを削除

git branch -D 削除するブランチ
#git branch --delete 削除するブランチ
12
9
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
12
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?