Skip to content
David Nolen edited this page Apr 8, 2014 · 14 revisions

Creating patches

Make a branch off master and write the code for the patch and commit it. Please write the commit message starting with CLJS-NNN: TICKET TITLE, followed by an empty line, followed by a few sentences explaining the changes. Please squash multiple commits into a single commit. Then produce the patch with the following:

git format-patch master --stdout > cljs_ticket_number.patch

Testing patches

In order to test ClojureScript patches in your own project, apply the patch to a local clone of the ClojureScript repo. Run script/build, this will install a version of ClojureScript - note the version number. Change your projects :dependencies to use this version number and confirm the patch works for you.

Clone this wiki locally