Here is my commit history with git log --pretty=%h --graph
(the order of commits goes from bottom to top)
* 81e1852 <- I have merged back in twice to get to this
* b6cb648
* 3ef6e0b
* a1f56c5
* a35a50a
* 47b2058 <- I have made a couple of branches since here
* 43c1912
* 19d189f <- Here I merged back in
|\
| * 837998b
| * 30c0a6c
| * e667ee8
| * f41ccfa
* | 54bd96c <- Here I branched off
|/
* 407af14
* 7951cdf
* a8db147 <- This was my first commit
As you can see, a few commits after my initial commit I branched off, made some changes and then merged back in. I have then done the exact same thing twice since commit 19d189f
but this is not reflected in the history.
Clearly I must have done something different, do you know what that might have been? I have not rebased, I am still learning Git and rebasing is not something I have attempted yet. It is possible that I had to resolve some conflicts when I merged 19d189f
, could this be why this branch appears in my history but others don't? Also note that I currently have no branches other than master and I am working entirely locally.
Thanks