Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to simulate conflict in git while switching braches without committing.

I have a master branch where I have a few files which are committed.

I create anther branch and modify the files which are also present in the master branch.

I still have not committted changes in the other branch.

But when I try to checkout the master branch It allows me to do the same.

I have not been able to simulate a conflicting scenario.

Can anyone give the file contents and the modified version of the same file which would cause a conflict.

share|improve this question
From where the other branch is created? Its starting point must be at least made at a commit before the last master commit – CharlesB Jan 24 at 14:24
Yes when I roll back to an earlier commit and then try to checkout to master I get a conflict.How can I do the same without rolling back to a previous commit. – david.colais Jan 24 at 14:54

1 Answer

up vote 2 down vote accepted

Conflicts happen when merging changes that happened on a same base, so to generate a conflict you need to start a branch from a commit that happened before the last commit of master:

If you have the following you can't get a conflict because modifications happened sequentially:

* branch tip
|
* master tip
|
* commit a 

There's nothing to merge, it's either branch or master.

On the contrary, the following will trigger a merge conflict if branch and master have made modifications on the same portion of a file, because they can be unrelated:

* branch tip
|
| * master tip
|/
* commit a

The conflict will happen on merging branch into master, git won't be able to say if you want to take the modification of branch or of master, or both.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.