Matthias N. wrote: > Hi devs, > > in the past I had ugly problems with merging two svn directories: > trunk and branches/mahono. > > I tried it by hand and with kdiff3.. but unfortunately this is just a > pain.. > > What is the best way to merge these dirs on a Debian/KDE machine? :-) > > Do I have to checkout the whole repository to let subversion do the > merge? Or is there a simpler way? > > Any help is really appreciated as I would like to finally polish my > suggestions for a change in the controller. > > Regards, > Matthias > > > > > > Matthias,
When keeping a branch from an actively changing trunk/ you should merge the changes from trunk into your branch very often in order to avoid one big mess when trying to get the latest changes from trunk. In short: cd /your/banch/checkout svn merge -r 4634:HEAD http://svn.symfony-project.com/trunk . I just tried that and it gives many conflicts and also it seems like revision 4634 is not the oldest revision you have not merged from trunk into your branch. I tried to look at the svn logs to see when was the last time you merged from trunk/ but I guess you were not merging the whole trunk/ but just parts of it (like libs/). If I understood right, you want to merge the latest changes from trunk/ into your branch, right? If that's the case, look at the above command and figure out the right start revision and maybe in your case you need to do several merges. Hope I helped at least a little :) Kupo --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "symfony developers" 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/symfony-devs?hl=en -~----------~----~----~----~------~----~------~--~---
