LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

git-show-unmerged-branches

List branches not yet merged into the current branch

TLDR

Show all unmerged branches
$ git show-unmerged-branches
copy
Show unmerged branches (equivalent native git)
$ git branch --no-merged
copy

SYNOPSIS

git show-unmerged-branches

DESCRIPTION

git show-unmerged-branches lists all local branches that have not been merged into the current HEAD. It is part of the git-extras collection and is useful for identifying work-in-progress branches and outstanding feature work.Internally, it runs `git branch --no-merged` while filtering out the current branch and the default branch.

CAVEATS

Requires git-extras to be installed. Only checks local branches, not remote tracking branches. Written by Paul Schreiber.

SEE ALSO

Copied to clipboard
Kai