如何比较发行版和特定分支?


9

我注意到,在GitHub“发布”页面上,方便地提到了自分支“开发”以来发生了多少次提交。例如,请参见AnkiDroid的示例

在此处输入图片说明

如何配置GitHub以显示对一个不同分支进行了多少次提交?

Answers:


16

如果将URL更改为以下格式,则可以查看标记之间的提交和更改:

https://github.com/{username}/{repo}/compare/{older-tag}...{newer-tag}

这将向您显示标记之间的计数和最多250次提交的更改。

因此,从您的示例中可以得出:

https://github.com/ankidroid/Anki-Android/compare/v2.2beta7...v2.2beta8

同样,如果您想比较分支之间的提交,则URL如下所示:

https://github.com/{username}/{repo}/compare/{branch}...{other-branch}

如果提交限制超过250,如何比较?
cjahangir

除非他们更改它,否则您无法比较提交次数是否超过250 @cja
Malaise的八天时间

@EightDaysofMalaise是否可以在两个分支之间比较特定目录?
onassar,

奇怪的是,您必须操纵url才能获得此功能,而提供此功能的所有界面元素似乎都存在于其他地方。尽管如此,它仍然有效:)
Maurice
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.