Skip to content

Commit 5a0662f

Browse files
kang8networm
authored andcommitted
fix:与英语原文保持一致
1 parent bd7914b commit 5a0662f

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

book/07-git-tools/sections/advanced-merging.asc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,11 @@ Automatic merge failed; fix conflicts and then commit the result.
348348
#! /usr/bin/env ruby
349349
350350
def hello
351+
<<<<<<< HEAD
352+
puts 'hola world'
353+
=======
351354
puts 'hello mundo'
355+
>>>>>>> mundo
352356
end
353357
354358
hello()
@@ -380,7 +384,13 @@ $ git checkout --conflict=diff3 hello.rb
380384
#! /usr/bin/env ruby
381385
382386
def hello
387+
<<<<<<< ours
388+
puts 'hola world'
389+
||||||| base
390+
puts 'hello world'
391+
=======
383392
puts 'hello mundo'
393+
>>>>>>> theirs
384394
end
385395
386396
hello()

0 commit comments

Comments
 (0)