I need a list of files which added/removed the string "textXYZ" in the project history.
git log -S"testXYZ"
gives me the list of commits which introduce or remove an instance of the string "testXYZ".
Unfortunately each of those commits have more than 10 files.
How do I get a particular file(s) which introduce or remove the string in the commit?