git fetch origin
git checkout --track origin/<remote_branch_name>
git pull origin remote_branch_name
git pull origin yourbranch
#for your eyes only
git checkout other-branch
git pull origin other-branch
git branch --track <branch-name> origin/<branch-name>
$ git checkout my_feature # Just making sure you're currently on the right branch!
$ git pull origin my_feature # Pulling what your coworkers have done so far.
git switch remote_branch