← 返回命令列表

Linux command

git-show-unmerged-branches 命令

文本

复制后可按需替换文件名、目录或参数。

常用示例

Show all unmerged branches

git show-unmerged-branches

Show unmerged branches (equivalent native git)

git branch --no-merged

说明

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.

FAQ

What is the git-show-unmerged-branches command used for?

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.

How do I run a basic git-show-unmerged-branches example?

Run `git show-unmerged-branches` in a terminal, then adjust file names, paths, flags, or remote targets for your system.

Where can I find more git-show-unmerged-branches examples?

This page includes 2 examples for git-show-unmerged-branches, plus related commands for nearby Linux tasks.