vote up 1 vote down star

Is there DIFF plugin availaple for Delphi? I need simple add diff or patch file to my project, replaceing the porject code, that was changed in the patch, but keeping also the old one incase of falling back to old file without the patch.

flag
I don't understand what you mean, please re-edit the question and title, ... a diff doesn't depend on the programming language, ... AND add an example. – ulrichb Jul 17 at 7:29

4 Answers

vote up 1 vote down

Winmerge It's an excellent differencing tool for source files without needing Delphi. Bri

link|flag
vote up 1 vote down

Use a version control system, like mercurial.

link|flag
vote up 3 vote down

If you use a version control system to check the files into, you can use the version control tools to maintain the ability to store differences and merge. SVN along with TortoiseSVN seems to be a very popular (and open source) method of doing just this. There are plenty of examples of integration into the IDE.

The history tab in the IDE works well too, if you are the only one working on the file. If this is the case I would set the history rather high, and use the GExperts project backup wizard to make "checkpoint" backups.

A fantastic windows based diff/merge utility that I strongly recommend is Beyond Compare, which also happens to be written in Delphi. :)

link|flag
vote up 0 vote down

I think the OP is asking something like the diff/patch utils from GNUWin tools. You get a patch file and apply it to the code base.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.