git fetch origin <branch-name>
git checkout --track origin/daves_branch
git branch --track <branch-name> origin/<branch-name>
git fetch <remote> <rbranch>:<lbranch>
git checkout <lbranch>
git fetch origin
git switch daves_branch
git remote add <remote_name> <remote_repo_url>
git fetch origin <branch-name>
git checkout --track origin/daves_branch
git branch --track <branch-name> origin/<branch-name>
git fetch <remote> <rbranch>:<lbranch>
git checkout <lbranch>
git fetch origin
git switch daves_branch
git remote add <remote_name> <remote_repo_url>