On Tue, Dec 01, 2009 at 01:52:18PM -0500, Greg A. Woods wrote: > At Mon, 30 Nov 2009 22:22:12 +0300, Dmitry Potapov <dpotapov@xxxxxxxxx> wrote: > Subject: Re: "git merge" merges too much! > > > > The key difference comparing to what you may got used is that branches > > are normally based on the oldest branch in what this feature may be > > included. Thus normally changes are not backported to old branches, > > because you can merge them directly. > > Hmmm... the idea of creating topic branches based on the oldest branch > where the feature might be used is indeed neither intuitive, nor is it > mentioned anywhere I've so far read about using topic branches in Git. Most things that we consider "intuitive" are those that we got used to. Git is different in many aspect than other VCSes (such as CVS/SVN), and the workflow that good for those VCSes may not be optimal for Git. There is a good description that provide basic knowledge how to use Git: man gitworkflows or online: http://www.kernel.org/pub/software/scm/git/docs/gitworkflows.html If you do not base your changes on the oldest branch then you will not be able to merge changes, which implies you will have to cherry-pick manually without ability automatic to track what changes were merged and what were not, this is a recipe for a disaster... > At the moment I'm leaning towards a process where the configuration > branch is re-created for every build -- i.e. the merges are redone from > every topic branch to a freshly configured branch forked from the > locally supported release branch, hopefully making use of git-rerere to > solve most conflicts in as automated a fashion as is possible. I am not quite sure that I fully understood your idea of configuration branches, but I want to warn you about one serious limitations of git-rerere -- it stores conflict resolution per-file basis. This means that if resolution of some conflict implies some change to another file then git-rerere will not help you here. So, it handles maybe 80-90% cases, but not all of them. > > Perhaps Stacked-Git really is the best answer. I will have to > investigate more. There is also TopGit. I have never used any of them, but if you are interested in patch management system, you probably should look at both of them. StGit is modelled after quilt, while TopGit is aimed to be better integrated with Git and better fit to work in distributed environment. But as I said, I do not have any first hand experience with any of them. (Personally, I would look at TopGit first, but maybe I am biased here). > > > > $ git branch new-foo foo > > > > $ git rebase --onto newbase oldbase new-foo > > Hmmm.... I'll have to think about that. It makes some sense, but I > don't intuitively read the command-line parameters well enough to > predict the outcome in all of the scenarios I'm interested in. > > what is "oldbase" there? I'm guessing it means "base of foo" (and for > the moment, "new-foo" too)? You have: o---o---o---o---o newbase \ o---o---o---o---o oldbase \ o---o---o foo and you want this: o---o---o---o---o newbase | \ | o´--o´--o´ new-foo \ o---o---o---o---o oldbase \ o---o---o foo Dmitry -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html