文章版本: Enterprise Server 2.17
比较提交
You can compare the state of your repository across branches, tags, commits, and dates. To compare different versions of your repository, append /compare
to your repository's path.
我们将通过查看 Linguist 仓库复刻的比较页面来展示比较视图的强大功能,该页面位于 https://github.com/octocat/linguist/compare/master...octocat:master。
每个仓库的比较视图包含两个下拉菜单:base
和 compare
。
base
应被视为比较的起点,而 compare
被视为终点。 在比较期间,可随时通过单击 Edit(编辑)来更改 base
和 compare
点。
比较分支
The most common use of Compare is to compare branches, such as when you're starting a new pull request. You'll always be taken to the branch comparison view when starting a new pull request.
要比较分支,您可以从页面顶部的 compare(比较)
下拉菜单中选择分支名称。
此处是在两个分支之间进行比较的示例。
比较标记
Comparing release tags will show you changes to your repository since the last release.
Instead of typing a branch name, type the name of your tag in the compare
drop down menu.
此处是在两个标记之间进行比较的示例。
比较提交
您还可以在 GitHub 上通过两点差异比较来比较仓库或其复刻中的任意两个提交。
要在 GitHub 上通过两点差异比较来快速比较两个提交或直接比较 Git 对象 ID (OID),请编辑仓库“Comparing changes(比较更改)”页面的 URL。
例如,此 URL 使用简短的 7 字符 SHA 代码比较提交 c3a414e
与 faf7c6f
:https://github.com/github/linguist/compare/c3a414e..faf7c6f
。
有关其他比较选项的更多信息,请参阅“三点和两点差异比较”。
跨复刻比较
您可以比较基础仓库与任何复刻的仓库。 这是用户对项目执行拉取请求时显示的视图。
要比较不同仓库上的分支,请在分支名称前加上用户名。 例如,通过为 base
指定 octocat:master
,为 compare
指定 octo-org:master
,您可以比较分别由 octocat
和 octo-org
拥有的仓库上的 master
分支。
此处是在两个仓库之间进行比较的示例。
跨提交比较
作为一种快捷方法,Git 使用 ^
表示法表示“前一次提交”。
您可以使用此表示法对某个提交或分支的现状与前身进行比较。 例如,96d29b7^^^^^
表示 96d29b7
之前的五次提交,因为有五个 ^
标记。 在 base
分支中键入 96d29b7^^^^^
,并在 compare
分支中键入 96d29b7
, 可将 96d29b7
之前的五次提交与 96d29b7
提交进行比较。
以下是使用 ^
表示法进行比较的示例。