Question: Which statement is true when you use the git add -A command?
- Only new files in the working directory are staged to the index.
 - All new and updated files from the working directory are staged to the index.
 - All files in the working directory are staged to the index in alphabetical order.
 - Only updated files in the working directory are staged to the index.
 
Answer: The correct answer of the above question is Option B:All new and updated files from the working directory are staged to the index.