git pull remote branch

git fetch all remote branch

# track all remote branches:
git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done
# update all local copies of remote branches
git fetch --all
# update all local tracking branches
git pull --all

Source: stackoverflow.com

git bash upstream branch change

git branch --set-upstream-to=origin/branch

Source: stackoverflow.com

pull remote branches

git fetch origin
git checkout --track origin/<remote_branch_name>

Source: stackoverflow.com

git fetch remote branch

git checkout --track origin/branch_name

Source: codegrepper

Git pull remote branch

git pull origin remote_branch_name

Source: www.freecodecamp.org

git pull remote branch

git switch remote_branch

Source: codegrepper