Your first commit
This isn't a code editor - it's a tiny terminal. Every line you type is one
real git command, run against a real (private, in-browser) repository. No
typing file contents, no functions to write - just the commands themselves,
exactly like a real project.
You're dropped into a folder that already has one file in it: readme.txt.
Nothing has been committed yet.
Your task: stage readme.txt and commit it with the exact message
Add readme.txt.
You'll practice:
git add <file> - moving a file into the staging area
git commit -m "<message>" - sealing a snapshot
Related reading: Your First Repository - init, add, commit, log →