pull new branch from repo code example
Example 1: git pull a new branch froma remote repo
git checkout --track origin/daves_branch
Example 2: git pull new branch from remote
git fetch origin
git switch daves_branch
git checkout --track origin/daves_branch
git fetch origin
git switch daves_branch