We have a fairly large GIT repo and I would like to remove branches that were never merged back into master.
The reverse is fine too - a way to list all branches tha
git branch --no-merged master
Or for the other way, git branch --merged master
git branch --merged master
docs