forked from philippthun/jgit_jdbc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
65 lines (47 loc) · 2.42 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
com.sap.poc.jgit.storage.jdbc
-----------------------------
This package is a prototypical implementation (proof of concept, thus packaged
in com.sap.poc) of the (not final) org.eclipse.jgit.storage.dht.spi interface.
It binds JGit's generic DHT storage to JDBC.
The code is based on patch set 11 of Shawn Pearce's JGit change "RFC Store Git
on any DHT" (http://egit.eclipse.org/r/2295). Furthermore Shawn's JGit DHT
storage implementations for Apache Cassandra (https://github.com/spearce/jgit_
cassandra) and Apache HBase (https://github.com/spearce/jgit_hbase) have been
used as 'reference implementations'.
This version has been successfully tested on a PostgreSQL database (version
9.0.3-1). As a test repository, JGit itself was pushed and cloned. The current
version works with PostgreSQL only as it uses data type 'BYTEA'.
Here are the steps to try it out:
1. Download and install database software
2. Start database server
e.g. PostgreSQL:
initdb -D <...>/data -E UNICODE
postgres -D <...>/data
3. Create database
e.g. PostgreSQL:
createdb <database>
4. Download JDBC driver
5. Copy driver to JRE's lib/ext directory
6. Build jgit-jdbc.jar
7. Create schema
java -Djdbc.drivers=<fully-qualified-class-names> -jar jgit-jdbc.jar \
jdbc-create-schema git+jdbc+<vendor>://<host>:<port>/<database>
e.g. PostgreSQL on localhost:
java -Djdbc.drivers=org.postgresql.Driver -jar jgit-jdbc.jar \
jdbc-create-schema git+jdbc+postgresql://localhost:5432/<database>
8. Initialize repository
java -Djdbc.drivers=<fully-qualified-class-names> -jar jgit-jdbc.jar \
jdbc-init git+jdbc+<vendor>://<host>:<port>/<database>/<repository>.git
e.g. PostgreSQL on localhost:
java -Djdbc.drivers=org.postgresql.Driver -jar jgit-jdbc.jar jdbc-init \
git+jdbc+postgresql://localhost:5432/<database>/<repository>.git
9. Start JGit daemon (with 800M)
java -Xmx800m -jar jgit-jdbc.jar jdbc-daemon --enable receive-pack \
git+jdbc+<vendor>://<host>:<port>/<database>/<repository>.git
e.g. PostgreSQL on localhost:
java -Xmx800m -jar jgit-jdbc.jar jdbc-daemon --enable receive-pack \
git+jdbc+postgresql://localhost:5432/<database>/<repository>.git
10. Push
git push git://<host>/<repository>.git master
11. Clone
git clone git://<host>/<repository>.git