Sequence NODE_347
Easy

Create & Switch Branches

Git & GitHub
Technical Specification

Create a new feature branch from main, switch to it, make a commit, then switch back.

Input/Output Samples
Input:git branch
Output:* feature/navbar and main listed
Optimal Logic Path
git switch -c feature/navbar
# make changes + commit
git switch main
Architectural Deep-Dive
Branches isolate work so you can develop features in parallel without breaking main.