I need to check-out one branch at a time (may be another at different time). To make it fastest I am doing below steps.
git remote add -f origin <Repository address>
(at first time only)
and on subsequent fetches for a particular branch
git checkout -b branch localbranch
Do we have anything else to make this approach faster? I am more interested in fastening the first step.