Answers for "list of unmerged branches"

0

list of unmerged branches

// those not in master
git branch --no-merged master

// those not in current HEAD
git branch --no-merged 
git branch -r --no-merged

// compare with origin
git branch -r --no-merged origin/master
Posted by: Guest on September-26-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language