Process Flow - Creating branches with git branch
Start in main branch
Run 'git branch <new-branch>'
New branch created locally
Check branches with 'git branch'
New branch listed, current branch unchanged
This flow shows how creating a new branch with 'git branch' adds it locally without switching to it.