Lets say you have a program, and it has been customized for multiple customers. Many customers are using a program who's checksum is unique to that customer.

Then lets say that management wants to turn the whole thing into a single codebase. Now we have the job of merging all the unique versions from all the customers to create an (ideally) single codebase to reduce maintenance cost when installing bugfixes or improvements on multiple systems.

Example of 4 unique versions. If I merge left to right, I end up handling the removal of A, and wasting time on the adding back of A.

   A  A
B B B B
C C C
D      

I would prefer they be sorted like this. Now I can reduce the amount of work by handling the removal of A, but not the adding back of A.

A A 
B B B B
  C C C
      D

If you get many more versions, 20, or even 100, you find that the repeated merging of the undone and redone modifications multiple times becomes a serious waste of time!

Do you know of a script that outputs the files in order of differences, or an editor feature that sorts the open tabs by differences?

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.