Git Good (Version Control)
Debug This!
100

This command shows the commit history of the current branch.

What is `git log`?

100

This HTTP status code means “Not Found.”

What is 404?

200

This command stages all modified files at once.

What is `git add .` ?

200

This type of fault occurs when accessing invalid memory.

What is a segmentation fault?

300

This command temporarily saves changes that are not staged or committed.

What is `git stash`?

300

This is the result of 0.1 + 0.2 == 0.3 in Python.

What is False?

400

This command removes the last commit but keeps the changes locally.

What is `git reset --soft HEAD~1` ?

500

This git operation rewrites history for a linear timeline, unlike merge which preserves history.

What is git rebase?