Module Quiz: Working with Git :Version Control (Meta Front-End Developer Professional Certificate) Answers 2025
1. git add puts files/changes into the staged area
✔️ True
❌ False
2. Command to show the current state of the working directory
✔️ git status
❌ git pull
❌ git clone
3. Command to upload changes to a remote repo
✔️ git push
❌ git commit
❌ git clone
4. git diff shows revision history
❌ False
✔️ git diff shows differences, NOT history
History = git log
5. Command to download latest changes from remote
✔️ git pull
❌ git push
6. Commands to create a new branch named “feature” — Select all that apply
✔️ git checkout -b feature
✔️ git branch feature
❌ git clone feature
(You must select both.)
7. Which item was removed?
Diff:
-* Shoes (removed)
+* Dress (added)
✔️ Shoes
❌ Hat
❌ Watch
❌ Dress
8. Command that shows who made changes to each line in a file
✔️ git blame
❌ git diff
❌ git log
❌ git clone
📊 Summary Table
| Q# | Correct Answer |
|---|---|
| 1 | True |
| 2 | git status |
| 3 | git push |
| 4 | False |
| 5 | git pull |
| 6 | git checkout -b feature, git branch feature |
| 7 | Shoes |
| 8 | git blame |