til

Today I Learned: collection of notes, tips and tricks and stuff I learn from day to day working with computers and technology as an open source contributor and product manager

View project on GitHub

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