Complete the command to check the integrity of a Git repository.
git [1]The git fsck command checks the integrity of the Git repository by verifying objects and links.
Complete the command to check the repository and show corrupted objects.
git fsck --[1]The --full option makes git fsck perform a full check and show all corrupted or dangling objects.
Fix the error in the command to check repository integrity with verbose output.
git fsck --[1]The --verbose option shows detailed information during the check.
Fill both blanks to find dangling objects and show them in the lost and found.
git fsck --[1] --[2]
The --dangling option shows dangling objects, and --lost-found saves them in the lost and found directory.
Fill all three blanks to check the repository, show verbose output, and save dangling objects.
git fsck --[1] --[2] --[3]
The --full option performs a complete check, --verbose shows detailed info, and --lost-found saves dangling objects.