Lets say I have two branch like this:
o---o---o---o---o master
\
o---o---o feature
If I run the following commands:
$ git checkout master
$ git merge feature
what will happen?
o---o---o---o---o master o---o---o---o---o master
\ / or this \ \
o---o---o---- feature o---o---o-------o feature
