git-delete-squashed-branches - Man Page

Delete branches that were squashed

Examples (TL;DR)

Synopsis

git-delete-squashed-branches [<branch-name>]

Description

Deletes all git branches that have been "squash-merged" into branch-name.

Options

<branch-name>

The target branch were the "squashed-merged" branches were committed to. If no value is given, then the current checked out branch will be used.

Examples

Delete all branches that were "squash-merged" into the current checked out branch.

$ git delete-squashed-branches

Delete all branches that were "squash-merged" into the main branch. This will checkout the target branch and leave you on said branch after the command has completed.

$ git delete-squashed-branches main

Author

Written by Teddy Katz <teddy.katz@gmail.com> and Vladimir Jimenez <me@allejo.io>

Reporting Bugs

<https://github.com/tj/git-extras/issues>

See Also

<https://github.com/tj/git-extras>

Referenced By

git-extras(1).

May 2021 Git Extras