Difference between revisions of "Git"

From openZIM
Jump to navigation Jump to search
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
We have an '''open developement process''', all our source code is public and available for download using [http://en.wikipedia.org/wiki/Git Git].
We have an '''open developement process''', all our source code is public and available for download using [http://en.wikipedia.org/wiki/Git Git]. All our developments are managed and are available [https://github.com/openzim/ here].
 
== Read only ==
 
Checking out the whole code repository:
<pre>
git clone https://gerrit.wikimedia.org/r/p/openzim.git
</pre>
 
== Read/Write ==
Once you got write permission on the repository:
<pre>
git clone ssh://<user>@gerrit.wikimedia.org:29418/openzim.git
</pre>
 
== Web ==
 
[https://gerrit.wikimedia.org/r/gitweb?p=openzim.git Browse our repository with your Web browser].
 
== Structure ==
The suggested subversion repository structure is:
* zimlib
*: Contains the libzim, which allows programs to read zim-files. Here are also some command line tools to access zim-files.
* zimwriter
*: is a system, which creates zim files using zimlib.
* zimreader
*: a web server based on [http://www.tntnet.org Tntnet], which makes zim-files available via web.
 
__NOTOC__

Latest revision as of 10:36, 10 May 2017

We have an open developement process, all our source code is public and available for download using Git. All our developments are managed and are available here.