At work, we have a very large code base, which we usually export for a web application so that everything is updated. If we develop test code, this is always done in the branch to make sure that it does not contradict the chest, which may unexpectedly cause an error.
My question is whether SVN can be exported, but only for differences, otherwise the entire repository must be exported again, which takes quite a lot of time. Say, for example, we had the “last exported” flag, then we compare the latest update dates with files and export only those that were later than the last export date.
This would be very convenient for inter / intranet systems where a full export is performed in order to synchronize our live / repo. Any ideas?
EDIT . Looking at the patch, I don’t see how you create the patch for files that already exist in the repo. We already have files. So I want to create a patch from the x-version to the head and apply it to the root of my project in order to apply every single difference. However, I am not sure if this is possible.
source
share