Read more

Git: List remote branches

Lexy
September 26, 2011Software engineer at makandra GmbH

Sometimes you may need to figure out what branches exist on a remote repository so you can pull them down and check them out, merge them into your local branches, etc. You can see the remote branches by saying

git branch -r
Illustration web development

Do you need DevOps-experts?

Your development team has a full backlog? No time for infrastructure architecture? Our DevOps team is ready to support you!

  • We build reliable cloud solutions with Infrastructure as code
  • We are experts in security, Linux and databases
  • We support your dev team to perform
Read more Show archive.org snapshot

Or, if you want to see both local and remote branches, you can say

git branch -a
Posted by Lexy to makandra dev (2011-09-26 10:39)