The steps are as follows;
git fetch origin
or git fetch --all
, this will fetch all the remote branches to your local and then this the second option you can proced with.
git checkout --track origin/<The_remote_branch you want to switch over>
Then work on this branch and you can verify whether you are on that branch or not by typing
git branch
It displayes the branch you currently in.