Page 1 of 1

HOW TO SUBMIT A PATCH

Posted: Sat Oct 06, 2012 7:36 pm
by eranif
Basically, if you use GIT version of codelite:

From within codelite's root source directory:

Code: Select all

git diff > my.patch
If you use stable tarball sources (remember to mention which revision did you use):

Use the 'diff' utility:

Code: Select all

diff -uNr path-orig path-mine > my.patch
Also, make sure you submit all your changes in a single patch file

Eran