I have made a git repository and added a text file to it. This is 100% for learning purpose.
I added "1" to the text file and committed it to master.
Created a new branch from master and appended "2".
Finally, created a branch from master and appended "3".
Could you please explain how a conflict may occur in this, or any other, scenario?
A merge conflict happens when two branches both modify the same region of a file and are subsequently merged. Git can't know which of the changes to keep, and thus needs human intervention to resolve the conflict.
In this case, your steps 2 and 3 create two branches that have conflicting changes.
You will have a conflict if you merge:
branch2
tomaster
(no conflict)branch3
tomaster
(conflict):That is because:
master
(with a second line empty)branch3
(with a second line including "3")master
(with a second line including "2", from the merge ofbranch2
tomaster
)Git will ask you to choose which content to keep ("3", "2", or both).
First, do the merges after:
See "Fix merge conflicts in Git?".