git pull origin remote_branch_name
$ git pull origin other-branch
git pull origin yourbranch
#for your eyes only
git checkout other-branch
git pull origin other-branch
$ 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