Question 6 of 39: While debugging code in your project repository, a large number of log files were added, and git status shows these as untracked files. How could you remove them from the project? Select an answer: Use the git clean -f command to remove them all. Find each file's respective directory, and then delete it using the delete feature of your OS. Add the files to staging, and then commit them to the repository. Use the git rm command for each individual file.
Question 7 of 39:
Why is it important to use a descriptive commit message with a standardized format?
Select an answer:
Git enforces a stylized message format.
Git's grep argument requires multiple search fields to be populated.
Each change committed in Git truncates the previous version message.
Using Git's search features will be more effective this way.