Question: After a recent release with a stack trace, an issue is create that indicates the problem is with a newly added configuration property named MaxConnections. What command can find all commits that add or remove the string MaxConnections?

  1. - git grep -a "MaxConnections"
  2. - git log --search-string "MaxConnections"
  3. - git log -S "MaxConnections"
  4. - git commit --with "MaxConnections"

Answer: The correct answer of the above question is Option C:- git log -S "MaxConnections"