Complete the command to create a packfile from loose objects in Git.
git [1]-objects packfile < list_of_objects.txtThe git pack-objects command creates a packfile from a list of objects.
Complete the command to verify the integrity of packfiles in Git.
git [1]-pack packfile.packThe git verify-pack packfile.pack command checks the integrity of packfiles.
Fix the error in the command to repack Git objects with maximum compression.
git repack -a -d -[1]The -9 option sets the maximum compression level in git repack.
Fill both blanks to create a packfile and index from objects in Git.
git [1]-objects [2] < objects.txt
git pack-objects packfile reads object names from standard input to create a packfile and index.
Fill all three blanks to list objects in a packfile with their sizes and types.
git [1]-index [2] | [3]
git show-index packfile.idx | less lists objects in a packfile with their sizes and types.