As it happened, when I create a new branch and make it, I do not see its branches on my chart.
Here is the code I'm doing:
git init git add . git commit -a ... other commits in here git checkout -b mynewbranch git add . git commit -a git checkout master git merge mynewbranch git add . git commit -a
This is what I expect to see in my mind when I do git log -graph
* 47926e1 This is a commit back on master \ * f3dc827 How come i am not seeing a branch in my tree * 1cd3018 This should be on my new branch / * 47f3716 This is my third commit * 878b018 This is my second commit * 2db9f83 Initial commit
But I see this:
* 47926e1 This is a commit back on master * f3dc827 How come i am not seeing a branch in my tree * 1cd3018 This should be on my new branch * 47f3716 This is my third commit * 878b018 This is my second commit * 2db9f83 Initial commit
I do not understand something?
source share