git 显示两次提交之间函数的修改

git show modification of a function between two commits

要显示函数修改历史,我可以使用git log -L :functionName:filePath

但是会显示函数的所有修改历史,可能太lang了

我怎样才能在两次特定提交之间修改函数?

我从 Advanced Git log 得到一个解决方案 git log commit1..commit2 -L :functionName:filePath