Context:
- working on branch A
- branch B has been created remotely and being updated
- git branch -adoes not show branch B
How can branch B be checked out?
Context:
git branch -a does not show branch BHow can branch B be checked out?
 
    
    You should do this:
git fetch --all # Fetch all remote branches
git checkout B
