diff options
author | YAEGASHI Takeshi <yaegashi@debian.org> | 2014-02-19 17:27:32 (JST) |
---|---|---|
committer | YAEGASHI Takeshi <yaegashi@debian.org> | 2014-02-19 18:24:11 (JST) |
commit | 5ba5088f957241b01777bcf04027197fd57f871f (patch) | |
tree | 821e2f42c4c22fbe4b6b171164d9b368861ec1a7 | |
download | cgit-about.zip cgit-about.tar.gz |
First about page for cgitabout
-rw-r--r-- | index.md | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/index.md b/index.md new file mode 100644 index 0000000..a0a6d42 --- /dev/null +++ b/index.md | |||
@@ -0,0 +1,41 @@ | |||
1 | # cgit for Debian | ||
2 | |||
3 | ## Prebuilt packages | ||
4 | |||
5 | Prebuilt packages are available from <http://debian.keshi.org/cgit/>. | ||
6 | No support is provided for these packages. Use them at your own risk. | ||
7 | |||
8 | apt-line for sid: | ||
9 | |||
10 | deb http://debian.keshi.org/cgit/sid ./ | ||
11 | |||
12 | apt-line for wheezy: | ||
13 | |||
14 | deb http://debian.keshi.org/cgit/wheezy ./ | ||
15 | |||
16 | Import the archive key before apt-get: | ||
17 | |||
18 | curl http://debian.keshi.org/archive.key | apt-key add - | ||
19 | apt-get update | ||
20 | apt-get install cgit | ||
21 | |||
22 | ## Building packages | ||
23 | |||
24 | How to build a binary package using [git-buildpackage](http://honk.sigxcpu.org/projects/git-buildpackage/manual-html/gbp.html): | ||
25 | |||
26 | git clone http://git.keshi.org/debian/cgit | ||
27 | cd cgit | ||
28 | git remote add upstream git://git.zx2c4.com/cgit | ||
29 | git remote update | ||
30 | git submodule init | ||
31 | git submodule update | ||
32 | git-buildpackage | ||
33 | |||
34 | The upstream archive (`cgit-x.xx.orig.tar.xz`) will be exported from | ||
35 | the repository using a tag like `v0.10` as well as submoduled `/git`. | ||
36 | |||
37 | ## References | ||
38 | |||
39 | * [cgit - A hyperfast web frontend for git repositories written in C.](http://git.zx2c4.com/cgit/about) | ||
40 | * [#515793 - RFP: cgit -- C-code Web Front-end to GIT - Debian Bug report logs](https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=515793) | ||
41 | * [#739231 - ITP: cgit -- A hyperfast web frontend for git repositories written in C - Debian Bug report logs](https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=739231) | ||