Question: How would you display a histogram showing inserts, deletion, and modifications per file for a specific commit along with its general commit information?

  1. Use `git stat`.
  2. Use `git debug --prettyprint`.
  3. Query the remote repository with the commit hash.
  4. Use `git show --stat`.

Answer: The correct answer of the above question is Option D:Use `git show --stat`.