From 0c00544467ad2c8552a02be7ed8d059262699da8 Mon Sep 17 00:00:00 2001 From: petrie911 Date: Thu, 28 Jul 2022 10:38:18 -0500 Subject: [PATCH] lol merge --- docs/tutorial/intro_to_git.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/tutorial/intro_to_git.md b/docs/tutorial/intro_to_git.md index 9391b1b2e..59262a2d5 100644 --- a/docs/tutorial/intro_to_git.md +++ b/docs/tutorial/intro_to_git.md @@ -248,7 +248,11 @@ As such, if you only want to learn one of these, learn merging. If the two branches have both touched the same or nearby lines, git will not know which you want to keep. It will therefore pause the merge/rebase and tell you to decide. You will find a section of the file that looks like this: ```bash +<<<<<<< A +Some code +======= Some other code +>>>>>>> B ``` from which you should pick one (or combine parts of both as appropriate), then delete the rest. (You definitely do not want the git artefacts left in!)