summaryrefslogtreecommitdiffhomepage
path: root/documentation
diff options
context:
space:
mode:
authorHannu Nyman <hannu.nyman@iki.fi>2015-09-16 17:51:19 +0300
committerHannu Nyman <hannu.nyman@iki.fi>2015-09-16 17:55:07 +0300
commitf3f0de3e5eaaf7af727f1708b6d20b9ad6b10507 (patch)
tree356ae0eb6ca67d79ccc6dbbce26c0d11f93ec082 /documentation
parent3288fe76ab3d2269abcf902d0df6f847c6200e8e (diff)
documentation: delete obsoleted file that has a troublesome name
Remove SubmitPatchesHowTo:.md that contains obsolete advise about svn and submitting patches via trac. The filename also contains ":", which causes trouble for some git clients (e.g. TortoiseGit). Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/SubmitPatchesHowTo:.md33
1 files changed, 0 insertions, 33 deletions
diff --git a/documentation/SubmitPatchesHowTo:.md b/documentation/SubmitPatchesHowTo:.md
deleted file mode 100644
index cdd15524a..000000000
--- a/documentation/SubmitPatchesHowTo:.md
+++ /dev/null
@@ -1,33 +0,0 @@
-# Checkout svn
-
- svn co http://svn.luci.subsignal.org/luci/trunk
-
-and change to that directory:
-
- cd trunk
-
-# Make your changes
-
-Edit the files you want to change. If you add some new files you need to add them to the svn tree:
-
- svn add <dir/files>
-
-Where <dir/files> are the directories/files you have added. Its possible to specify multiple files/directories here.
-
-# Use svn diff to generate a patch with your changes
-
-To check if your changes look ok first do:
-
- svn diff <dir/files>
-
-and check the output. Again you can specify multiple dirs/directories here.
-
-If everything looks like expected save the patch:
-
- svn diff <dir/files> > ./mypatch.patch
-
-
-# Submit patches
-
-Use the [Ticket system](http://luci.subsignal.org/trac/newticket) to submit your patch.
-