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

Second merge: Let's try a conflict #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

github-learning-lab[bot]
Copy link

Step 3: Resolve a simple conflict

You may merge a lot of pull requests before you encounter your first merge conflict. That’s because Git is really smart when it comes to merging. Unless you're paying close attention to other branches in your repository, you usually won't know you have a conflict until you create the pull request.

This branch is a great example. In this scenario, two of our friends have been working in this repository. They both created branches, made changes to the _config.yml file, and opened pull requests. One pull request was merged to master without problems, but now the other pull request shows a conflict.

The history of master and this branch look something like this:

deviated branches

However, because this pull request changes the same lines in the _config.yml file, there is a merge conflict.

Let's help our friends resolve this conflict.

⌨️ Activity: Resolving your first merge conflict

  1. At the bottom of the page in the "This branch has conflicts that must be resolved" section of the Pull Request, click the Resolve conflicts button

  2. Look for the highlighted sections that begins with <<<<<<< update-config and ends with >>>>>>> master. These markers are added by Git to show you the content that is in conflict

  3. Remove the changes made on the master branch by deleting all of the content below the ======= and above >>>>>>> master

  4. Next, remove the merge conflict markers by deleting the following lines:

    <<<<<<< update-config
    =======
    >>>>>>> master
    
  5. Optional: If you'd like, you can edit the _config.yml file with your own information. Change any of the lines within the file, even outside of where the markers were. More about this below

  6. With the merge conflict markers removed, click Mark as resolved

  7. Finally, click Commit merge

Sometimes, the best way to resolve a merge conflict is to add content that's different from both branches, or even to combine all of the changes from both branches. This is why Git needs a human to look at the code and make the proper fixes.


Watch below for my response

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant