summaryrefslogtreecommitdiffhomepage
path: root/SubmittingPatches
diff options
context:
space:
mode:
authorFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2012-07-28 15:50:33 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2012-07-30 21:44:54 +0900
commitdbade0ca57ae6154ad0ebea519b7a7e850e249dc (patch)
tree55561d6c039acf7e89d71612d5624e209e5177cb /SubmittingPatches
parentbe18e1b4b1dea497b07ce39ad4727aab1a6ab85c (diff)
Add SubmittingPatches doc
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'SubmittingPatches')
-rw-r--r--SubmittingPatches18
1 files changed, 18 insertions, 0 deletions
diff --git a/SubmittingPatches b/SubmittingPatches
new file mode 100644
index 00000000..0d9ddc0d
--- /dev/null
+++ b/SubmittingPatches
@@ -0,0 +1,18 @@
+How to Submit Patches for Ryu
+=============================
+
+Send patches to ryu-devel@list.sourceforge.net. Please don't use 'pull
+request' on github. We expect you to send a patch in Linux kernel
+development style. If you are not familiar with it, please read the
+following document:
+
+http://lxr.linux.no/source/Documentation/SubmittingPatches
+
+Please check your changes with pep8 and run unittests to make sure
+that they don't break the existing features. The following command
+does both for you:
+
+fujita@rose:~/git/ryu$ ./run_tests.sh
+
+Of course, you are encouraged to add unittests when you add new
+features (it's not a must though).