Capstone: Ship a Feature
The full workflow: branch, commit, merge, start to finish.
Time to put the whole story together, exactly the way features get built for real: save a starting point, branch off, build in a couple of commits, meanwhile main moves too, then merge the finished feature back.
Match the goal picture. You know every command it takes; the hints are there if you want the recipe.
git commit -m "message"Save a snapshot on the current branch.git switch -c <name>Branch off and start the feature.git switch <name>Hop back when you need to.git merge <name>Ship it: bring the feature into main.Your task
The full workflow: branch, commit, merge, start to finish.
Open this level in your browser to type the commands at a live git prompt with an animated commit graph.