HOW TO SUBMIT A PATCH
Posted: Sat Oct 06, 2012 7:36 pm
Basically, if you use GIT version of codelite:
From within codelite's root source directory:
If you use stable tarball sources (remember to mention which revision did you use):
Use the 'diff' utility:
Also, make sure you submit all your changes in a single patch file
Eran
From within codelite's root source directory:
Code: Select all
git diff > my.patch
Use the 'diff' utility:
Code: Select all
diff -uNr path-orig path-mine > my.patch
Eran