报告显示2个提交之间的差异

时间:2015-04-16 20:33:36

标签: git tfs git-diff tfs-reports

我们正在使用git进行TFS。我正在寻找一些可以在两个日期和时间之间的所有提交中基本上执行git-diff的东西。我们知道我们可以手动构建一些东西,但出于合规性的原因,如果它已经存在则更容易通过。

1 个答案:

答案 0 :(得分:1)

要显示单个提交的差异,请执行

git show $thatcommit

要显示从一次提交到任何其他提交的差异,请执行

git diff $theonecommit $theothercommit

要显示每组提交的各个差异,请执行以下操作:

git log -c -p master..topic    # to get all the unmerged topic commits