I usually create new branch from develop

git checkout -b new-feature develop

then after the last commit I merge back to develop

git checkout develop
git merge new-feature

but this time I created new-feature2 brach from new-feature and now I cannot merge to develop.

Is there a way to switch new-feature2's parent to develop?

(The files I worked on were the same version as in develop so this should not require merging.)

link|improve this question

80% accept rate
feedback

4 Answers

up vote 2 down vote accepted

what about creating a patch, checkout to the develop branch and apply the patch?

git checkout new-feature2

git format-patch new-feature

git checkout develop

git am name-of-the-patch.patch
link|improve this answer
Sounds good, what would the commands be? – hakunin Dec 8 '11 at 9:17
Fantastic, didn't know git patches were so easy, thanks! – hakunin Dec 8 '11 at 9:24
feedback

You could rebase your feature over to the main base:

git checkout new-feature2  
git rebase --onto develop new-feature new-feature2
# rebase the stuff from new-feature to new-feature2 onto develop branch

or do it 'manually' by using cherry pick

git checkout develop
git log --oneline new-feature..new-feature2 
# for every commit call:
git cherry-pick <commit-id> # note, newer versions of cherry-pick allow multiple commits at once
link|improve this answer
I already solved the issue with patching, but this sounds more like what I was looking for. Thanks for including the commands, this will help readers. (PS: Note that the branch I wanted to rebase to was develop. The example says maser.) – hakunin Dec 8 '11 at 12:53
I've changed the example, thanks for pointing that out hakunin. – reto Dec 8 '11 at 13:59
feedback

You could also use git diff and git apply:

git diff new-feature..new-feature2 | git apply -
link|improve this answer
Thanks for including an alternative solution! – hakunin Dec 8 '11 at 12:56
feedback

Have you seen interactive rebase?

git rebase -i develop

is a pretty simple solution–it'll show all your commits from that branch. Just delete the "pick" lines from the unwanted branch.

link|improve this answer
Sound great, thanks for adding this! – hakunin Jan 6 at 10:20
feedback

Your Answer

 
or
required, but never shown

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