Tagged articles

merge-conflict

6 articles · Page 1 of 1
IT Xianyu
IT Xianyu
Jul 21, 2026 · Fundamentals

How I Rescued a Six‑File Git Merge Conflict in Three Simple Steps

When a merge of a feature branch produced six conflicted files that turned completely red, the author avoided a risky reset and resolved the conflict in under 30 seconds by using three precise Git commands, while also showing how to recover mistakenly deleted branches and lost stashes.

Command LineGitbest practices
0 likes · 8 min read
How I Rescued a Six‑File Git Merge Conflict in Three Simple Steps
liandk
liandk
Jun 4, 2026 · Fundamentals

How to Merge a Feature Branch PR into the dev Branch Without Conflicts

This guide walks through a zero‑conflict workflow for merging a feature branch into the dev branch, covering local finalization, pulling the latest dev, merging locally, pushing the feature branch, and creating a GitHub pull request with the correct base and compare settings.

GitWorkflowdev-branch
0 likes · 2 min read
How to Merge a Feature Branch PR into the dev Branch Without Conflicts
Laravel Tech Community
Laravel Tech Community
Jan 25, 2022 · Fundamentals

Highlights of Git 2.35 Release: New Stash Options, Log Formatting, SSH Key Enhancements, Merge Conflict Improvements, and More

Git 2.35 introduces a suite of enhancements—including a new --staged mode for git stash, richer --format options for git log, advanced SSH key handling, performance boosts for --histogram, a novel zdiff3 merge conflict style, and expanded sparse‑index and reftable support—aimed at streamlining version‑control workflows for developers.

GitGit 2.35merge-conflict
0 likes · 5 min read
Highlights of Git 2.35 Release: New Stash Options, Log Formatting, SSH Key Enhancements, Merge Conflict Improvements, and More
Liangxu Linux
Liangxu Linux
Apr 12, 2020 · Fundamentals

Why Cherry‑Pick Can Trigger Hidden Merge Conflicts (And When It’s Safe)

This article explains how using Git's cherry‑pick to copy commits between branches can lead to merge conflicts or silently incorrect code states, illustrates three possible outcomes with a concrete example, and advises when cherry‑pick is appropriate versus using a full merge.

Gitcherry-pickmerge-conflict
0 likes · 7 min read
Why Cherry‑Pick Can Trigger Hidden Merge Conflicts (And When It’s Safe)
360 Quality & Efficiency
360 Quality & Efficiency
Mar 23, 2018 · Fundamentals

Understanding Git Merge Conflicts and How to Resolve Them

This article explains the mechanics of Git pull (fetch + merge), outlines common merge‑conflict scenarios such as modifying different files, overlapping changes, and renaming files, and provides step‑by‑step solutions to resolve these conflicts in collaborative development.

Gitcollaborationmerge-conflict
0 likes · 5 min read
Understanding Git Merge Conflicts and How to Resolve Them