fetch from branch code example
Example 1: fetch a specific branch
git fetch <remote_rep> <remote_branch>:<local_branch>
Example 2: fetch from remote branch
git switch daves_branch
git fetch <remote_rep> <remote_branch>:<local_branch>
git switch daves_branch