I am wanting to bring a newly added remote branch into my local repository without interfering with my local branches. Is this possible?
When I do:
git branch -a The new remote branch doesn't appear in the list. So if I try to fetch the origin/newremotebranch it says that it doesn't exist.
git fetch origin? That should create new remote tracking branches for all existing remote branches.