Projects/Cloudstone/Creating Apache Patches
From RAD Lab
Many components of Cloudstone are Apache Incubator projects. In order to submit changes to be commited for Apache projects, you will want to submit a patch file containing the diff.
[edit]
Projects and Sources
- Olio (Rails): http://svn.apache.org/repos/asf/incubator/olio/webapp/rails/trunk
- Olio Workload: http://svn.apache.org/repos/asf/incubator/olio/workload/rails/trunk
[edit]
Instructions
- Check out a copy of the source:
svn co path/to/source patched - Make or copy the changes you would like to make.
- Check out a vanilla copy of the source:
svn co path/to/source vanilla - Create the patch file:
diff -x .svn -ruN vanilla patched > name-timestamp.patch (e.g. <code>olio-workload-20080811.patch) - Open the patch file and do a sanity check to make sure the patch is what you expect:
mate name-timestamp.patch
