Complete the code to show the main directory that stores all Git data.
ls -a | grep [1]The .git directory is the hidden folder where Git stores all its data and history.
Complete the command to list the contents inside the .git directory.
ls [1]/.gitThe dot . means the current directory, so ls ./.git lists the contents of the .git folder inside the current directory.
Fix the error in the command to show the HEAD file inside the .git directory.
cat [1]/HEADThe HEAD file is inside the .git directory. The command must use the correct folder name .git (with a dot) to access it.
Fill both blanks to create a command that shows the contents of the config file inside the .git directory.
cat [1]/[2]
The config file inside the .git directory holds repository settings. The command cat .git/config displays its contents.
Fill all three blanks to create a command that lists files inside the info subdirectory of the objects directory within .git.
ls [1]/[2]/[3]
The objects directory inside .git stores all Git objects. The info subdirectory contains additional info files. The command ls .git/objects/info lists those files.