File tree 1 file changed +21
-0
lines changed
1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,27 @@ Tika is based on Java 6 and uses the [Maven 3](http://maven.apache.org) build sy
17
17
The build consists of a number of components, including a standalone runnable jar that you can use to try out Tika features. You can run it like this:
18
18
19
19
java -jar tika-app/target/tika-app-*.jar --help
20
+
21
+ Contributing via Github
22
+ =======================
23
+ To contribute a patch, follow these instructions (note that installing
24
+ [ Hub] ( http://hub.github.com ) is not strictly required, but is recommended).
25
+
26
+ ```
27
+ 0. Download and install hub.github.com
28
+ 1. File JIRA issue for your fix at https://issues.apache.org/jira/browse/TIKA
29
+ - you will get issue id TIKA-xxx where xxx is the issue ID.
30
+ 2. git clone http://github.com/apache/tika.git
31
+ 3. cd tika
32
+ 4. git checkout -b TIKA-xxx
33
+ 5. edit files
34
+ 6. git status (make sure it shows what files you expected to edit)
35
+ 7. git add <files>
36
+ 8. git commit -m “fix for TIKA-xxx contributed by <your username>”
37
+ 9. git fork
38
+ 10. git push -u <your git username> TIKA-xxx
39
+ 11. git pull-request
40
+ ```
20
41
21
42
License (see also LICENSE.txt)
22
43
------------------------------
You can’t perform that action at this time.
0 commit comments