惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
DataBreaches.Net
B
Blog
博客园_首页
C
Check Point Blog
Microsoft Security Blog
Microsoft Security Blog
MyScale Blog
MyScale Blog
P
Proofpoint News Feed
Engineering at Meta
Engineering at Meta
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
B
Blog RSS Feed
M
MIT News - Artificial intelligence
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Cloudflare Blog
量子位
V
V2EX
Y
Y Combinator Blog
Hugging Face - Blog
Hugging Face - Blog
Martin Fowler
Martin Fowler
Recent Announcements
Recent Announcements
I
InfoQ
博客园 - 【当耐特】

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
The Complete Guide to Resolving Git Merge Conflicts: From...
Shubham Gupta · 2026-05-31 · via DEV Community

If you've been working with Git for a while, you've probably encountered a merge conflict at the worst possible moment—right before a release, during a hotfix, or while merging a large feature branch.

For many developers, especially beginners, merge conflicts can be intimidating. But here's the truth:

A merge conflict doesn't mean something is broken. It simply means Git needs your help deciding which changes should be kept.

In this guide, we'll dive deep into what merge conflicts are, why they happen, how to resolve them safely, and how professional teams minimize them.

What Is a Git Merge Conflict?

A merge conflict occurs when Git cannot automatically combine changes from two branches.

Git is usually smart enough to merge changes from different files or different parts of the same file. However, when multiple developers modify the same lines of code, Git doesn't know which version is correct.

Instead of making assumptions, Git stops the merge and asks for human intervention.

Understanding Git's Three-Way Merge

Before understanding conflicts, it's important to know how Git merges branches.

Imagine this scenario:

A --- B --- C (main)
       \
        D --- E (feature)

B is the common ancestor
C contains changes from the main branch
E contains changes from the feature branch

When merging, Git compares:

Common ancestor (B)
Main branch (C)
Feature branch (E)

This process is called a three-way merge.

If Git can combine changes safely, the merge succeeds automatically.

If not, a conflict occurs.

A Real Example

Let's say you're working on a React application.

  • Code in Main Branch
const API_URL = "https://api.production.com";

Meanwhile, another developer modifies the same line.

  • Code in Feature Branch
const API_URL = "https://api.staging.com";

Now Git sees:
Main wants Production URL
Feature wants Staging URL
Git cannot determine which one is correct.

Result:

CONFLICT (content): Merge conflict in config.js
Automatic merge failed; fix conflicts and then commit the result.

Types of Merge Conflicts

  • Content Conflicts

Most common conflict type.

Example:

function login() {
  return "Login Success";
}

Two developers modify the same line differently.
Git cannot choose automatically.

  • Delete vs Modify Conflicts

Developer A:

Deletes user.js

Developer B:

Adds new functionality to user.js

Git doesn't know whether the file should exist or not.

  • Rename Conflicts

One branch renames a file while another branch edits it.

Example:

auth.js → authentication.js

At the same time another developer updates auth.js.

Git needs clarification.

  • Binary File Conflicts

Files such as:

  • Images
  • PDFs
  • Videos cannot be merged line by line. Git requires manual selection.

How to Reproduce a Conflict

Let's create one intentionally.

Step 1: Create Feature Branch

git checkout -b feature-login

Modify:

const version = "v1";

Commit:

git add .
git commit -m "Update version in feature branch"

Step 2: Switch Back to Main

git checkout main

Modify same line:

const version = "v2";

Commit:

git add .
git commit -m "Update version in main branch"

Step 3: Merge

git merge feature-login

Output:

Auto-merging app.js
CONFLICT (content): Merge conflict in app.js
Automatic merge failed.

Congratulations.
You now have a merge conflict.

Reading Conflict Markers

Git inserts markers into the file.

<<<<<<< HEAD
const version = "v2";
=======
const version = "v1";
>>>>>>> feature-login

Understanding these markers is crucial.

HEAD

Represents your current branch.

const version = "v2";

Incoming Changes
Represents the branch being merged.

const version = "v1";

Separator

=======

Separates both versions.

How to Resolve the Conflict

You have three choices.

Option 1: Keep Current Changes

const version = "v2";

Use when current branch is correct.

Option 2: Keep Incoming Changes

const version = "v1";

Use when merged branch contains desired code.

Option 3: Combine Both

Often the best solution.

const version = process.env.VERSION || "v2";

This preserves both ideas.

Completing the Merge

After editing:

git add app.js

Then:

git commit

Git creates a merge commit.

Verify:

git log --oneline --graph

Resolving Conflicts Using VS Code

VS Code provides built-in conflict resolution tools.
You'll see buttons such as:

  • Accept Current Change
  • Accept Incoming Change
  • Accept Both Changes
  • Compare Changes

Example:

Current Change
Incoming Change

Instead of manually editing markers, simply choose the appropriate option.
This is often the fastest approach.

Handling Conflicts During Rebase

Many teams prefer rebasing.

Example:

git rebase main

Conflict appears:

CONFLICT (content)

Resolve file.
Then continue:

git add .
git rebase --continue

If needed:

git rebase --abort

This restores branch to its original state.

Advanced Conflict Resolution Commands

View Conflicted Files

git status

Output:

both modified: app.js
both modified: config.js

See Exact Differences

git diff

Useful for understanding what changed.

Abort Entire Merge

git merge --abort

Returns repository to pre-merge state.

View Merge History

git log --graph --all --decorate

Helps visualize branch history.

Best Practices Used by Professional Teams

1. Pull Latest Changes Frequently

Don't work on stale code.

git pull origin main

Regular updates reduce conflicts.

2. Keep Branches Short-Lived

Bad:

Feature branch open for 3 weeks

Good:

Feature branch merged within 1-3 days

3. Create Smaller Pull Requests

Smaller PRs:

  • Easier reviews
  • Faster merges
  • Fewer conflicts

4. Use Feature Flags

Instead of long-lived branches:

if (featureFlagEnabled) {
  // new feature
}

This minimizes divergence.

5. Communicate Early

If multiple developers are modifying:

  • Authentication
  • Payments
  • Shared components Coordinate before coding. A 5-minute discussion can save hours of conflict resolution.

Common Mistakes Developers Make

Deleting Conflict Markers Incorrectly
Wrong:

<<<<<<< HEAD

Leaving markers causes syntax errors.
Always remove them completely.

Resolving Without Understanding Code

Never blindly click:

Accept Current

or

Accept Incoming

Understand the business logic first.

Skipping Testing

After resolving:

npm test

or

npm run build

Always verify functionality.

Real Production Story

A team member once resolved a conflict by keeping only their own changes.
The application compiled successfully.
However, the conflict resolution removed a critical authentication check added by another developer.
The bug wasn't discovered until production deployment.
The lesson:
Successful merging doesn't guarantee correct merging.
Always review the final code carefully.

Key Takeaways

✅ Merge conflicts are normal.
✅ They happen when Git cannot decide between competing changes.
✅ Learn to read conflict markers confidently.
✅ Use tools like VS Code to simplify resolution.
✅ Pull frequently and keep branches small.
✅ Test thoroughly after resolving conflicts.

Conclusion

Merge conflicts are a fundamental part of collaborative software development. Every professional developer encounters them regularly.

The difference between a beginner and an experienced engineer isn't avoiding merge conflicts—it's resolving them confidently and safely.

Once you understand how Git thinks, merge conflicts become less of a roadblock and more of a routine step in your development workflow.

Have you ever faced a merge conflict that took hours to resolve? Share your story in the comments—I'd love to hear how you handled it! 🚀