Home  »  CodeGuidesSnippetsTechnologyTools   »   How to Show or List all Branches in git

How to Show or List all Branches in git

Posted: March 9, 2022 | by Michael Bright

See or list all branches in git.

$ git branch -a

If you require only listing the remote branches from Git Bash then use this command:

$ git branch -r

You may also use the show-branch command for seeing the branches and their commits as follows:

$ git show-branch

Found this article interesting? Follow Brightwhiz on Facebook, Twitter, and YouTube to read and watch more content we post.