On Wed, Jun 04, 2008 at 10:11:33AM +0200, David wrote:OK, so assume the tree looks like this: o--o--O master \ 1--2--3--4--5--6--7--8 topic First do a "git checkout topic; git rebase --interactive master", and reorder the topic branch so it looks like this: o--o--O master \ 3--4--5--6--1--2--7--8 topic Now find the commit ID for commit #6 above, and assuming that it's f1dead2f, run the command "git checkout master; git merge f1dead2f". Now the graph looks like this: o--o--O--3--4--5--6 master \ 1--2--7--8 topic You could also use the command: "git update-ref refs/heads/master f1dead2f" which keeps HEAD pointing at the topic branch, but the reason why I suggested the "git checkout master; git merge f1dead2f" is that the commands are generally more familiar to git newcomers, and I usually want to do a test build and run the regression tests on master to make sure things are clean. Note that in the above set of commands, summarized as: 1) "git checkout topic; git rebase --interactive master" 1a) "make; make check" to build and run regression tests on the reordered topic branch. 2) "git checkout master; git merge f1dead2f" (this should be a fast forward) 2a) "make; make check" to build and run regression tests on the updated master branch. There may be indeed conflicts at the first "git rebase --interactive", but that's just git being conservative. Usually it really isnt that hard to resolve the conflicts, git add the files which required fixups, and then doing a "git rebase --continue". And you will have to do the manual fixup regardless of whether you use "git rebase" or "git cherry-pick"; the git rebase is just a more automated way of doing things. Regards, - Ted -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
| Alan Cox | Re: Dual-Licensing Linux Kernel with GPL V2 and GPL V3 |
| Jan Engelhardt | intel iommu (Re: -mm merge plans for 2.6.23) |
| Adrian Bunk | Re: LSM conversion to static interface |
| Greg Kroah-Hartman | [PATCH 004/196] Chinese: add translation of SubmittingPatches |
git: | |
| Gerrit Renker | [PATCH 27/37] dccp: Integration of dynamic feature activation - part 2 (server side) |
| Jarek Poplawski | [PATCH] pkt_sched: Destroy gen estimators under rtnl_lock(). |
| Andrew Morton | Re: [BUG] New Kernel Bugs |
| Winkler, Tomas | RE: iwlwifi: fix build bug in "iwlwifi: fix LED stall" |
