Is there a good way to use git to identify all the modified functions in each revision in the history? I\'ve tried using the -p switch, but it doesn\'t seem to work in the
Here's a quick and dirty attempt at what I think you're going for. It does a git log
to show all revisions, -p
to include the diff in the log, a grep
to only include the lines containing the commit ID and the hunk headers, and uses sed
to filter out the line numbers, leaving only the guess at the function name that Git writes after the hunk header.
git log -p | grep -E '^(commit|@@)' | sed 's/@@.*@@//'