Tremulous Forum

Mods => Modding Center => Topic started by: Le Compilateur on June 02, 2008, 08:27:38 pm

Title: What command-line utility creates patch files?
Post by: Le Compilateur on June 02, 2008, 08:27:38 pm
I would like to create a patch for people who want to use my QVM (http://tremulous.net/forum/index.php?topic=8253.0) but also want to apply their own changes. What command-line utility do I use for this? Is it patch, diff, or something else I haven't heard of?
Title: Re: What command-line utility creates patch files?
Post by: Plague on June 02, 2008, 08:37:54 pm
cd to your qvm's directory and use
Code: [Select]
svn diff > filename.patch
Title: Re: What command-line utility creates patch files?
Post by: Le Compilateur on June 02, 2008, 08:42:07 pm
You mean the source code directory (such as ~/tremulous-svn/) or the actual directory where the QVM is?

Whatever, I will try this on my own with the source directory.

NVM this worked great. Thanks!