Stage 9 — Edit, Commit, Push Again
Add one line to the scoreboard, commit, and push. This is the loop you will use forever.
What You'll Learn
- The everyday Git loop: edit → add → commit → push
- How fast subsequent pushes are once tracking is set up
- How a new commit appears on GitHub within seconds
Prerequisites
You finished Stage 8. Your GitHub repo shows four commits and the dark-theme page.
What Changes
index.htmlgains one line inside the scoreboard:<p>High Score: 120</p>.- One new commit is created.
- That commit is pushed to GitHub.
Outcome
- The page shows Score: 0 / Lives: 3 / High Score: 120 in the scoreboard.
git log --onelineonmainshows five commits.- GitHub shows five commits on
main.
This is the rhythm of real-world Git work.