Create a branch in Git from another branch
问题 I have two branches: master and dev I want to create a \"feature branch\" from the dev branch. Currently on the 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** I mean that the branch seems ff merged, and I don\'t understand why... What I\'m doing wrong? Can you explain me please how