Skip to content

Changelog — Stage 1: First Save Point

Previous Stage

Stage 0: Create the Game Screen (branch: stage-0-create-screen)

Files Changed

FileChangeWhat and Why
.git/addedThe hidden Git repository metadata, created by git init. You do not edit this by hand.
index.htmltrackedThe file itself is unchanged, but Git now knows about it and has a copy in its history.

Summary

No code changes. This stage is about adding Git to the project. You run git init to create a repository, git add index.html to stage the file, and git commit to make the very first save point. After this stage every future change can be saved on top of this commit.