Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 448 Bytes

list_merged_branches.md

File metadata and controls

29 lines (19 loc) · 448 Bytes

List merged branches

Listing branches is basic

$ git branch

Listing branches that have been merged

$ git branch --merged

Listing branches that have been merged on your remote:

$ git branch -r --merged

Hence listing all branches on the remote:

$ git branch -r

References