rogerxu / git-tips

Tips for Git
Apache License 2.0
2 stars 3 forks source link

Check if a branch is fully merged #7

Closed rogerxu closed 8 years ago

rogerxu commented 8 years ago

How to check if a branch is fully merged into another one?

rogerxu commented 8 years ago

Display merged local branches only

$ git branch --merged

Display merged local and remote branches

$ git branch -a --merged