HOW TO SUBMIT A PATCH

Discussion about CodeLite development process and patches
User avatar
eranif
CodeLite Plugin
Posts: 6367
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

HOW TO SUBMIT A PATCH

Post 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
Make sure you have read the HOW TO POST thread