Let's say I have a file A.cpp, and I notice an error on line 15 of the file. Let's say the error is a "const" on a function that returns a pointer to a member variable, meaning using const on the function is technically correct but semantically wrong. I would like to discuss the semantics with the author who made the change.
Using git, is there a way to find out which revision introduced the "const" token? More specifically, I'd like to know who introduced the token.
"git blame" shows who made the last change to the line, but I would actually like to find the first commit containing the token.