1

Topic: which program do you use to create .patch files?

i use tortoise to apply the patch in windows, but i don't know how\what i must do to create my .pacth file

2

Re: which program do you use to create .patch files?

Patch files are created with "diff -u" in Linux. I guess there are ports of diff for windows too (or there is some GUI that do the same).

Greetings,
Mo(2)

3

Re: which program do you use to create .patch files?

with tortoise i can make a .patch file?

4

Re: which program do you use to create .patch files?

Install this:
http://sourceforge.net/projects/gnuwin3 … e/download
then go to start>run write "cmd" in and press enter
in the black box write:


KillaBilla wrote:

diff -rupN sourcepath newpath > patchfilename.patch
For Sourcepatch you normally use the stadart Teewords Src and for newpath you mods src.
Make sure that there is the same folder struct or the patch will get to big.
And remove the files in src/game/generated as the will be generated later.
And only patch the "src" folder, in case you did not change anything out of it.

5

Re: which program do you use to create .patch files?

thanks a lot stylamichel, gnuwin32 utils is very good program

6

Re: which program do you use to create .patch files?

this is one of my old post, but i need another info about the same topic...
i haven't tortoise anymore, so how to merge .patch files with GNU win32 DiffUtils?
what line command string i must write?

7

Re: which program do you use to create .patch files?

Why can't you simply redownload Tortoise?

Not Luck, Just Magic.

8

Re: which program do you use to create .patch files?

You must put 3 things in 1 folder:
1. tw source
2. the patch and
3. gnu.exe (or something like that tongue) copied from the bin folder in the install dir.

Open command prompt and cd to that folder. Now:

patch -p0 < patch.patch

I think that's it.

Once in a century...