Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix escape character and figure title #480

Merged
merged 1 commit into from
Mar 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions book/07-git-tools/sections/revision-selection.asc
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ Date: Fri Nov 7 13:47:59 2008 -0500
ignore *.gem
----

也可以写成 `HEAD~~~`,也是第一父提交的第一父提交的第一父提交:
也可以写成 `HEAD\~~~`,也是第一父提交的第一父提交的第一父提交:

[source,console]
----
Expand All @@ -301,10 +301,10 @@ Date: Fri Nov 7 13:47:59 2008 -0500

最常用的指明提交区间语法是双点。
这种语法可以让 Git 选出在一个分支中而不在另一个分支中的提交。
例如,你有如下的提交历史 <<double_dot>>
例如,假设你的提交历史类似于 <<double_dot>>

[[double_dot]]
.Example history for range selection.
.区间选择的提交历史示例
image::images/double-dot.png[区间选择的提交历史示例]

你想要查看 experiment 分支中还有哪些提交尚未被合并入 master 分支。
Expand Down
Loading