Git merge - Three way 'git merge'
问题 I am trying to simulate the example on three-way merge process in git given here, Below is the figure provided explaining three-way merge. To understand this, I have created a file testfile under my git project directory and made changes as below: Commit C0 echo 'Commit #0 - master branch' >> testfile git add testfile git commit -m 'commit 0' Commit C1 echo 'Commit #1 - master branch' >> testfile git commit -a -m 'commit 1' Commit C2 echo 'Commit #2 - master branch' >> testfile git commit -a