We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd7914b commit 5a0662fCopy full SHA for 5a0662f
book/07-git-tools/sections/advanced-merging.asc
@@ -348,7 +348,11 @@ Automatic merge failed; fix conflicts and then commit the result.
348
#! /usr/bin/env ruby
349
350
def hello
351
+<<<<<<< HEAD
352
+ puts 'hola world'
353
+=======
354
puts 'hello mundo'
355
+>>>>>>> mundo
356
end
357
358
hello()
@@ -380,7 +384,13 @@ $ git checkout --conflict=diff3 hello.rb
380
384
381
385
382
386
387
+<<<<<<< ours
388
389
+||||||| base
390
+ puts 'hello world'
391
383
392
393
+>>>>>>> theirs
394
395
396
0 commit comments