Skip to content

Commit c6862c2

Browse files
chaosinknetworm
authored andcommitted
different conflict text from the English version
1 parent 88576ef commit c6862c2

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

book/03-git-branching/sections/basic-branching-and-merging.asc

+4
Original file line numberDiff line numberDiff line change
@@ -229,9 +229,13 @@ Git 会在有冲突的文件中加入标准的冲突解决标记,这样你可
229229

230230
[source,html]
231231
----
232+
<<<<<<< HEAD:index.html
233+
<div id="footer">contact : [email protected]</div>
234+
=======
232235
<div id="footer">
233236
please contact us at [email protected]
234237
</div>
238+
>>>>>>> iss53:index.html
235239
----
236240

237241
这表示 `HEAD` 所指示的版本(也就是你的 `master` 分支所在的位置,因为你在运行 merge 命令的时候已经检出到了这个分支)在这个区段的上半部分(`=======` 的上半部分),而 `iss53` 分支所指示的版本在 `=======` 的下半部分。

0 commit comments

Comments
 (0)