how to get another branch git code example
Example 1: how to switch another branch in git
git checkout 'another_branch'
Example 2: git create new branch from current
git checkout -b topic/newbranch
git checkout 'another_branch'
git checkout -b topic/newbranch