Complete the command to run garbage collection in Git.
git [1]The git gc command runs garbage collection to clean up unnecessary files and optimize the local repository.
Complete the command to run garbage collection with aggressive optimization.
git gc --[1]The --aggressive option makes git gc spend extra time optimizing the repository for better compression.
Fix the error in the command to prune unreachable objects during garbage collection.
git gc --prune=[1]The --prune=now option tells Git to remove unreachable objects immediately during garbage collection.
Fill both blanks to run garbage collection quietly and prune objects older than 2 weeks.
git gc --[1] --prune=[2]
The --quiet option suppresses output, and --prune=2.weeks.ago removes unreachable objects older than two weeks.
Fill all three blanks to run aggressive garbage collection, prune immediately, and show verbose output.
git gc --[1] --prune=[2] --[3]
This command runs garbage collection aggressively, prunes unreachable objects immediately, and shows detailed output.