Patch » History » Revision 5
« Previous |
Revision 5/8
(diff)
| Next »
Ivan Yiu, 2013-05-09 08:17
Patch¶
A patch file is a single file that will list all the changes made to Redmine. It is the preferred way to create and share changes to Redmine.
Creating a patch file¶
Creating a patch for Redmine is easy. Just follow the following simple steps:
- Download the development copy of Redmine
- Make your changes
- Run
svn diff > PATCH_NAME.diff
in you Redmine folder. Change PATCH_NAME to something that describes the purpose. - Upload the patch file to an issue and share
Applying a patch file¶
To apply a patch file you can use the patch program.
- Change into your Redmine directory (the one with app, test, and config folders)
- Run
patch -p0 < PATCH_NAME.diff
- Check the messages for any errors.
Some errors might occur because there are changes to the same areas of code. If you are familiar with merging code, you can try to merge the changes. Otherwise post for help where you downloaded the patch or in the forums.
Remove a patch file¶
To remove a patch file you can use the patch program.
- Change into your Redmine directory (the one with app, test, and config folders)
- Run
patch -p0 -R < PATCH_NAME.diff
- Check the messages for any errors.
Updated by Ivan Yiu over 11 years ago · 5 revisions