Checkout Remote Branch
To checkout a remote branch from git repository we can use these steps:
First
fetch
to update usinggit fetch
Then we can check the available branches
git branch --all
Lastly checkout the remote branch
git checkout --track <remote-branch>