0
1

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.

Bash/Zsh/PowerShell 上の Git でマージ済みのブランチを一括削除

Last updated at Posted at 2021-05-04

現在チェックアウトしていないマージ済みのブランチを一括削除します。

通常は master (あるいは main) ブランチをチェックアウトした上で実施すると良いでしょう。

ウェブを検索すると色々やり方が出てきますが、以下が比較的簡単だと思います1

Bash または Zsh の場合

git branch -d $(git branch --no-contains | xargs)

削除するブランチがないときは以下のメッセージが出ますが無視して下さい。

fatal: branch name required

PowerShell の場合

git branch --no-contains | % { git branch -d $_.trim() }
  1. 検索しても本稿の方法が出てこないのは --no-contains オプションが用意されたのが比較的最近だからなのかも知れません。 git/2.13.0.txt at v2.13.0 · git/git

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?