Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS DSA TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI R GO KOTLIN SASS VUE GEN AI SCIPY CYBERSECURITY DATA SCIENCE INTRO TO PROGRAMMING BASH RUST

Git Merge Conflicts


What is a Merge Conflict?

A merge conflict happens when two branches change the same part of a file.

Git can't decide which change to keep, so you have to choose.

You must resolve the conflict before you can finish the merge.


Why Do Merge Conflicts Happen?

Merge conflicts usually happen when you merge branches that changed the same lines in a file.

This is common in collaborative projects or when working on long-lived branches.


How to See and Resolve Merge Conflicts

When you merge a branch and there are conflicting changes, Git will pause and mark the files with conflicts.

Example: Merge a Branch

git merge feature-branch

If there are conflicts, Git will tell you which files are affected.


See Which Files Have Conflicts

Use git status to see which files need your attention:

Example: Check Status

git status


See the Differences

Use git diff to see what changed and help you decide how to resolve the conflict:

Example: See Differences

git diff

Edit the Conflict Markers

Open the conflicted file. You'll see sections like this:

Conflict Markers

<<<<<<< HEAD
Your changes here
=======
Other branch's changes
>>>>>>> feature-branch

Edit the file to keep what you want, then remove the conflict markers (<<<<<<<, =======, >>>>>>>).


Mark as Resolved

After fixing the file, mark it as resolved:

Example: Mark Resolved

git add filename.txt

Complete the Merge

Finish the merge with a commit (if Git doesn't do it automatically):

Example: Finish Merge

git commit

Cancel the Merge

If you want to stop and undo the merge:

Example: Abort Merge

git merge --abort

Use a Visual Merge Tool

If you prefer, you can use a visual tool to resolve conflicts:

Example: Use Mergetool

git mergetool

Pick One Side's Changes

If you want to keep only your changes or only the other branch's changes:

Example: Keep Our Changes

git checkout --ours filename.txt

Example: Keep Their Changes

git checkout --theirs filename.txt

Troubleshooting & Best Practices

  • If you're stuck, you can always use git merge --abort to start over.
  • Make sure you remove all conflict markers before marking as resolved.
  • If you use git mergetool and don't like the result, you can still edit the files by hand.



×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
sales@w3schools.com

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
help@w3schools.com

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2025 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.