xxxxxxxxxx
# Fetch the remote branch
git fetch origin <branch-name>
# Checkout the fetched branch
git checkout <branch-name>
xxxxxxxxxx
# Fetch all remote branches
git fetch
# Checkout the remote branch you want to work on
git checkout <remote-name>/<branch-name>