Here is the scenario:
I have one branch named 'develop'. I branch off from this branch, the new branch is 'foo2'. After 3 commits on foo2, I then checkout develop branch and merge the changes on foo2 into develop:
git merge foo2
I then run:
git log --graph
I do not see foo2 in the graph. Did I do something incorrect with merging? Or is it something else entirely?
The branch foo2 still exists