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!

link|improve this question
You'll find it much easier to draw in code blocks (indent four spaces, or use the 101010 button, or ctrl-k) than in block quotes. A random example: stackoverflow.com/questions/2474353/… – Jefromi Dec 17 '10 at 14:41
@Abizern: In my opinion, that's a bit too overly specific to be a useful tag, and the name is not particularly well-known. It's not even anywhere in the blog post describing the workflow. This is, however, definitely a question about git workflows. – Jefromi Dec 18 '10 at 14:37
@Abizern: I've left the tag for now, because I don't want rollback wars, but do note that this is the only use of that tag. – Jefromi Dec 18 '10 at 14:48
@jefromi - Someone has to start these tags ;) But Gitflow as a workflow and series of scripts is becoming more and more popular and this question directly references it. However; if you think the tag is entirely self-serving then feel free to remove it and I won't re-instate it. – Abizern Dec 18 '10 at 16:54
@Abizern: I do see a lot of people referencing that workflow; perhaps it's enough to be worth a tag. We'll find out! I'm going to go ahead and rename it to the usual convention. – Jefromi Dec 18 '10 at 20:49
feedback

1 Answer

up vote 6 down vote accepted

If you like the method in the link you've posted, have a look at Git Flow.

It's a set of scripts he created for that workflow.

But to answer your question:

$ git checkout -b myFeature dev

Creates MyFeature branch off dev. Do your work and then

$ git commit -am "Your message"

Now merge your changes to dev without a fast-forward

$ git checkout dev
$ git merge --no-ff myFeature

edit

Now push changes to the server

$ git push origin dev
$ git push origin myFeature

And you'll see it how you want it.

link|improve this answer
Thanks for your answer ;) I did the same (without merging yet) After looking at Git Flow source code it's roughly the same... I don't get why when I create my feature branch, commit and push to it (remote), the branch seems merged when I visualize all my branches – revohsalf Dec 17 '10 at 13:36
Because you are pushing the myFeature branch to the server, and it shows that it has come off the dev branch. There are no merges. My example merges to the dev branch and pushes that merged branch to the server. – Abizern Dec 17 '10 at 13:49
I've updated my answer. – Abizern Dec 17 '10 at 13:54
Thanks for your help ! – revohsalf Dec 17 '10 at 14:09
For anyone who's interested, there's a video tutorial here that talks about using gitflow (haven't finished watching it yet) – Benjol Jan 27 '11 at 12:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.