What command lists all unmerged branches?
Posted by QuinnLw
Last Updated: June 14, 2024
To list all unmerged branches in Git, you can use the following command:
git branch --no-merged
This command will show you a list of branches that have not been merged into your current branch. Make sure you are on the branch into which you are checking for unmerged branches before running the command.
Related Content
What command lists all remote branches?
What command lists all remote branches?
OliviaWm | Jun 15, 2024