When merging branches in a version control system, a merge conflict might arise. This tag is for questions about how such conflicts can be resolved.

learn more… | top users | synonyms

0
votes
1answer
14 views

Brew disabled by merge conflicts

Short version: I think I've made a huge mess of my brew installation, and I'm not sure what to do. Long version... I started out the day trying to install ruby: brew install ruby which seemed ...
0
votes
1answer
99 views

How to interactively (visually) resolve conflicts in SourceTree / git

I'm using (Windows) SourceTree for my git project. I can do it in either command prompt or Linux terminal. But, I'm wondering whether there is a nice way to interactively and visually resolve ...
2
votes
2answers
64 views

Show conflict diff part of a merge

I need to present to the team what changes I've made during conflict resolution of a merge. I know this is kind of hard, but I certainly believe it is possible somehow. I've tried already git show -m ...
3
votes
3answers
103 views

How to avoid git conflicts in a team?

We are some developers who work on same project and we use git for the project. If two or more of us happen to work on same file, we receive git conflicts which are hard to deal with, sometimes ...
0
votes
1answer
54 views

Why does Git sometimes generate meaningless merge conflicts

Quite frequently during rebases, Git generates a merge conflict like the following: <<<<<<< HEAD } ======= } >>>>>>> f192b7c... My commit description here ...
1
vote
1answer
59 views

git merge squash - conflict resolution when all I want is the changes from the branch I squashed from

I have github branch which I push to github when the master branch reaches some acceptable state (have done this once). To this end I did : MrD@MRSD ...
1
vote
1answer
27 views

Removing new files generated during SVN merge and postpone

I have recently attempted to merge my branch with the trunk version. During the merging operation, there happened to be lot of conflicts and I had postponed them. This inturn had created lot of new ...
0
votes
2answers
107 views

Git uncommit message only

I'm in this scenario pretty often and I don't know what to do. I was changed something in a branch. Commited & pushed. I was still working on same branch and somebody commited & pushed. I ...
0
votes
1answer
32 views

Why git shows a merge conflict when the HEAD version has no content at the line

I'm trying to do a git merge master from another branch, then I got this conflict: <<<<<<< HEAD =======    t.text     "label_en"    t.text     "help_text_en"    t.text     ...
2
votes
1answer
64 views

Windows Github basics and conflict handling (like VSS)

I'm new to Git / GitHub (used VSS in past). Based on my SO Post I'm using Windows GitHub Its user friendly compared to the command prompt based Git bash stuff. In particular the sync feature, no ...
0
votes
1answer
62 views

git ahead by X commits…can't find solution

Here's the sequence I have no edits on the branch at this point I did a git pull --rebase in a branch that is tracked to a remote branch Conflicts occured I did git reset --hard then git rebase ...
0
votes
1answer
130 views

git svn: Avoid large-scale conflicts in branching, merging, and rebasing

I work on two machines (Mac and Windows) with git-svn. My remote repo is an svn. I use the Mac as master repo, and the Windows as a slave. So all git-svn operations are done on the Mac, and the ...
1
vote
3answers
79 views

Cleaning up after a conflicted git merge?

I had a small conflict in a .h header file in a project I'm working on. This project is tracked in Git. Fortunately, the conflict was very simple to solve. I used git mergetool And chose the ...
0
votes
2answers
94 views

GIT corrupt files (<<<<<<<<HEAD)

I have this in my files after some trouble with VS2012 git-plugin: using Microsoft.VisualStudio.TestTools.UnitTesting; <<<<<<< HEAD using NHibernate; ======= ...
0
votes
0answers
21 views

Git alias take multiple files in merge

Often we have to merge a Linq2Sql DBML file and its usually just easier to take whatever was changed upstream and redo you're changes on top of that, as the file usually has the order of its elements ...
0
votes
0answers
112 views

Team Explorer Everywhere Merge Tool Error

We are using Team Explorer Everywhere on eclipse and We are having all sorts of problems with it but this one is new, when I got the latest from repo, it couldn't auto resolve the conflicts of one ...
1
vote
0answers
133 views

Git conflict (rename/rename)

After merging branched I've received a conflict (rename/rename) on bunch of files, with file~HEAD, and file~my_test_branch created. How to resolve these? Thanks
1
vote
2answers
51 views

git conflict: diff between BASE version and OTHER version

In Bazaar if you have a conflict in foo.html it will make an additional 3 files foo.html.BASE foo.html.OTHER foo.html.THIS Then you can diff -Naur foo.html.BASE foo.html.OTHER Comparing the ...
3
votes
2answers
64 views

How can I review manually resolved conflicts in git (github, some app, InteliJ)

As for me, manually resolved conflicts are one of the biggest sources of bugs. Currently we are resolving conflicts gathering loudly in front of one monitor, which I concider to be the stone age ...
0
votes
2answers
29 views

Show all current conflicts using tool

I am sometimes having conflicts when merging two branches using subversion. This is not a real problem, as I just have to look at the actual code and solve them one after the other. But I usually ...
3
votes
1answer
296 views

Navigate to next conflict with vimdiff

In vimdiff you can use [c and ]c to go to the previous or next change, but when doing three-way merging many of those changes are not conflicts. Is there a command to go to the next conflict, not the ...
0
votes
0answers
142 views

A better way of resolving conflicts (SVN) in XCode

I can reproduce this problem by going to the terminal, finding my project and typing in svn update -rOldVersionNumber Then go to a file that you know that has updated between the version you ...
0
votes
1answer
792 views

Cannot Merge due to conflict with UserInterfaceState.xcuserstate

I created a branch and made a bunch of changes. I committed the changes and then archived the changes. Then I switched to the master branch and tried to do a merge. It said I had uncommitted changes. ...
1
vote
1answer
89 views

Workflow for XCode & Git sharing code?

What is the best practice / process for sharing code using git between developers working on an iPhone application. Everytime I follow the normal git-fetch, git-rebase origin/master, method from the ...
0
votes
1answer
199 views

Does git checkout --ours affect files that are not in conflict?

I am rebasing a lot of commits right now, and previously one caused a conflict in two files. I examined those and decide that I can safely use "ours (master)". So I ran the git checkout --ours ., and ...
2
votes
2answers
57 views

Why does Git returns these characters when I pull from my remote repository?

<<<<<<< HEAD </div> <?php if( is_front_page() ){ ?> <div class="slogan-container"> <div class="slogan-img"></div> ...
4
votes
1answer
251 views

Why does git does not merge some changes?

We ran into a strange git merge issue. We have 2 repos (simplication below). The PublicRepo is where we do most development on and every now and then we pull/merge changes into PrivateRepo. ...
0
votes
1answer
84 views

How to avoid Git merge conflict after several relocations of a file?

When I'm trying to merge Git says: foo.txt deleted in HEAD and modified in release Actually, I didn't delete foo.txt in my branch, but moved it to a new place, a few times. I suspect that Git lost ...
1
vote
1answer
648 views

How to resolve git merge/rebase conflicts with 2 remote repos?

Having an issue with git rebase conflict, but only when using 2 remote repos. Here's the workflow: Do work... Commit pull -r staging master This works fine. If there is a conflict I can resolve ...
2
votes
1answer
379 views

SVN merge conflicts because of binary files

I am experimenting with VirtualSVN Server, TortoiseSVN and AnkhSVN, and everything is still quite new to me. I have added a Visual Studio 2010 (VB) solution to SVN. After this was done trunk ...
0
votes
2answers
127 views

git workflow: merging and fixing conflicts once

We have a simple workflow with three main branches staging i.e the test environment master i.e the production environment dev/XXX where XXX is the ticket number Clients log tickets we create a ...
11
votes
2answers
2k views

Git: currently in merge/conflict with private remote repo. How to tell Git to just use my local files?

Trying to use/learn git with a personal project. There's only me and a remote git repo, a few commits, and I'm stuck in a failed merge. A lot of my files have Git merge conflict markup now too. How ...
2
votes
1answer
96 views

Can I merge only non-conflicting changes in Git?

How can I simply (e.g. in one command?) merge in Git, keeping the state of conflicting files as in the current branch and without specifying each file individually as in theirs/ours options? git ...
1
vote
1answer
136 views

Automatically and recursively favor ours/theirs for sub-dir in git merge conflict resolution

I've got a git repository with some libraries, tracked normally (not as submodules or anything). I'm merging in a separate branch (not an upstream) that contains an update to one of the libraries. It ...
0
votes
2answers
376 views

why git stash cannot abandon the changes made just now?

i forked a project from github, and the origin point to my own github repo, remote point to its original repo, since i want to get update from remote, i use git pull remote branch_name, then my ...
8
votes
2answers
187 views

Feature backporting in Git / Subversion

What would be the preferred way to achieve the following workflow with either Git or Subversion (I have more interest in the Git version, but comparison will definitely be useful): Let's say we had ...
3
votes
1answer
965 views

Git revert creates conflict “deleted by us” due to rename

I'm trying to revert a commit made that modified a file that has since been renamed. The file modified used to be called bin/internal/call_parser.rb, and is currently called lib/call_parser.rb, and ...
1
vote
2answers
161 views

Git is not showing any conflicts, and is overwriting my local copy

My routine on git has always been very simple: git add -A git commit -m 'the changes I made' git pull # resolve conflicts git push However, for some unknown reasons, despite lots of conflicts with ...
0
votes
1answer
81 views

Merge two reformatted PHP files with GIT

We have two branches in GIT with some PHP-files. All we need to do is to merge one into another. Unfortunately, there are two huge files that was auto-reformatted with our IDEs (spaces, braces, ...
1
vote
2answers
93 views

Github Merge issue (all lines shown)

I'm trying to merge two of my branches and while trying to resolve the conflicts I can usually just open up the file and github has added ">>>>HEAD {my code} ======== {other code} ...
4
votes
3answers
698 views

Git merging hotfix to multiple branches

I've been trying to wrap my head around git branching models. I've been looking at http://nvie.com/posts/a-successful-git-branching-model/ for some ideas and coming from Subversion one thing I was ...
0
votes
1answer
186 views

Bad Merge Conflict Resolution in Git. Retry bad commit, keeping changes since?

I'm working on a small project with one other developer and we're having a bit of a situation. We're both familiar with SVN, but Git is new to the both of us. We're working on a single branch in our ...
0
votes
2answers
65 views

Merge two modified versions of an original string

This is related to version control, in a parallel modification situation where we do not know the exact timing of changes, so we assume that we receive two modified versions of a file at the same ...
0
votes
1answer
50 views

Local-only text segment is displayed outside markers in conflict file

In a conflict resolution file generated by git, only common code should be displayed outside the markers ('<<<<<<< ours' - '>>>>>>> theirs') - correct?! I have a CSS file with ...
1
vote
1answer
119 views

How do I reintegrate a feature branch with broken merge history in SVN?

I have a long-lived feature development branch, let's call it dev-foo. The problem is that when I try to merge it into release-1, I get all kinds of horrible tree-conflicts and source conflicts that ...
2
votes
4answers
177 views

Is there any tool for me to easy understand the git conflict file?

I merge two branch, but it result the final file like this: <<<<<<< HEAD this is line -1. this is line -2. this is line -3. ======= this is line b1. this is line b2. this is line ...
1
vote
1answer
426 views

How Does GitHub Merge Web-Based Wiki Edits With Ones Through The Repository?

I'm toying with the idea of providing some kind of Git access to resources used by a SaaS application to it's users. This will allow users to edit and push content through the Git interface as well as ...
3
votes
2answers
965 views

Finding the error in Xcode's project.pbxproj after merge

I'm facing a complicated merge of two branches in my iOS app's version control. After I've gone through identifying and picking the conflicting lines in project.pbxproj, Xcode won't load the file. ...
2
votes
0answers
176 views

How to make a Git merge operation ignore identical changes made to both branches?

Lets assume that we have one development branch 'A', and two sub branches 'B1' and 'B2', (both taken from A). Lets say that you run a format code command (in our case ReSharper's cleanup code) on the ...
6
votes
2answers
295 views

How to stash unmerged code in git?

I did a git pull and found that one of my files needs to be merged. I don't really want to merge that file right now - I have another branch that I need to work on, and I will get back to this branch ...

1 2