explain-git-with-d3 icon indicating copy to clipboard operation
explain-git-with-d3 copied to clipboard

Javascript error with "no-ff" merge

Open tomasfejfar opened this issue 9 years ago • 1 comments

When I try to show no-ff merge I get (tried both positions):

git merge --no-ff master
Cannot read property 'parent' of null
git merge master --no-ff
Cannot read property 'parent' of null

image

tomasfejfar avatar Oct 06 '16 06:10 tomasfejfar

What you are trying to do is merge an older commit into a newer commit where the older commit is a direct ancestor of the newer commit. Git would tell you "Already up to date." when you do that.

kheyse-werk avatar Mar 02 '18 09:03 kheyse-werk