Save Points Vocabulary
Word Bank
| git | repository | commit |
| commit message | git add | git log |
| rollback | git checkout | test case |
| known good version | development loop | bug |
Fill In the Blanks
- is a system that tracks every change to your project.
- A is a project folder tracked by git.
- A is a save point — a snapshot of your project.
- A describes what you changed in a commit.
- The command selects files for your next save point.
- The command shows all your save points.
- A means going back to a previous save point.
- The command restores files to the last commit.
- A describes what should happen when you do something.
- A is a tested version that you know works correctly.
Quick Checks
-
Put the development loop steps in order (number them 1-4):
Test
Save
Keep or Rollback
Change -
Match the command to what it does:
| Command | What It Does |
|---|---|
git add . |
|
git commit -m "msg" |
|
git log |
|
git checkout . |
Stretch: Write a Test Case
Write a test case for a feature that doesn’t exist yet in your quiz:
When I ,
should happen.