applying a patch before going to main service
Say we have 3 layers of adding files to a repository.
- Main - receives patch and if approved the patch is applied
- Group Leader, receives patch from group and forwards the patch to main
- Devs - create patches that are forwarded to Group Leader
Right now Group 开发者_JAVA百科Leader forwards the patches one by one, is there a way for Group Leader to apply the patches and submit them all at once?
Keep in mind that Group Leader also makes changes to the repo so changes of its own can be added to the batch or fix other patches.
Yes, Group Leader just has to use svn diff
and specify the minimum and maximum revisions of the patches applied one by one. It will create a big patch containing all the one by one patches.
精彩评论