git log --merges --first-parent -- <file>
は、特定のファイルの変更をマージしたものを表示します。ファイルをマージするためにPRを使用するので、これで十分です。
これは、しかし、そうではない、とあなたは追加のマージがPR用のではありませんメインラインにコミットしている、あなたはさらに出力をフィルタリングする--author=<pattern>
、--committer=<pattern>
の組み合わせを使用する必要がある、と--grep=<pattern>
フラグ可能性がある場合:
--author=<pattern>, --committer=<pattern>
Limit the commits output to ones with author/committer header lines that match
the specified pattern (regular expression). With more than one
--author=<pattern>, commits whose author matches any of the given patterns are
chosen (similarly for multiple --committer=<pattern>).
--grep=<pattern>
Limit the commits output to ones with log message that matches the specified
pattern (regular expression). With more than one --grep=<pattern>, commits whose
message matches any of the given patterns are chosen (but see --all-match).
When --show-notes is in effect, the message from the notes is matched as if it
were part of the log message.
http://stackoverflow.com/a/26870440/4280359 –