Git Good (Version Control)
This command shows the commit history of the current branch.
What is `git log`?
This HTTP status code means “Not Found.”
What is 404?
This command stages all modified files at once.
What is `git add .` ?
This type of fault occurs when accessing invalid memory.
What is a segmentation fault?
This command temporarily saves changes that are not staged or committed.
What is `git stash`?
This is the result of 0.1 + 0.2 == 0.3 in Python.
What is False?
This command removes the last commit but keeps the changes locally.
What is `git reset --soft HEAD~1` ?
This git operation rewrites history for a linear timeline, unlike merge which preserves history.
What is git rebase?