Answered
I have a local repository on my machine where I am doing development work.
How do I pull in new branches that were created on the remote repository by other members of my team?
Is there a command for this?
You can use the pull command:
git pull
And then list out the git branch -a
to list all your branches:
git branch -a
You fetch remote branches with this command:
git fetch origin
Then the remote branches should show up locally:
git branch -a