I'm getting crazy with Git :)
I have 2 branches : master and dev
I want to create a "feature branch" from the dev branch
Currently On branch dev, I do :
$ git checkout -b myfeature dev
... (some work) $ git commit -am "blablabla"
$ git push origin myfeature
but, after visualizing my branches, I got:
--master
------0-----0-----0-----0-----0
------------------------dev----myfeature
(it's hard to draw :) )
I mean that the branch seems ff merged and I don't understand why...
What I'm doing wrong ? Can you explain me pls how you branch off from another branch and push back to the remote repo for the feature branch ? (for exemple a workflow like described here: http://nvie.com/posts/a-successful-git-branching-model/ )
Thanks folks!