I found one way to do it with cherry-picking: git checkout master git checkout -b feature-x # .... git commit -am "finished feature" git checkout master git cherry-pick feature-x git checkout live git cherry-pick feature-x
This seems to work, but is it the correct way to do it? Maybe I should still use merge to pull it into "master" and use cherry-pick for "live"? -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/git-users?hl=en.
