how to select a branch in github code example
Example 1: how to switch another branch in git
git checkout 'another_branch'
Example 2: git switch branch
git switch <branch_name>
git checkout <branch_name>
git checkout 'another_branch'
git switch <branch_name>
git checkout <branch_name>