diff options
author | Silvino Silva <silvino@bk.ru> | 2017-01-14 10:08:58 +0000 |
---|---|---|
committer | Silvino Silva <silvino@bk.ru> | 2017-01-14 10:08:58 +0000 |
commit | 85967ef5d54f6efbc7ff2f2e9d5126d8197cf43b (patch) | |
tree | a9505fe40c4d8587b9746218e54426c5f6431ac2 /tools/conf/srv | |
parent | 5eeb7b45275d15b5562e07cdfd6738d76b1446a9 (diff) | |
download | doc-85967ef5d54f6efbc7ff2f2e9d5126d8197cf43b.tar.gz |
clean url in gitweb
Diffstat (limited to 'tools/conf/srv')
-rw-r--r-- | tools/conf/srv/gitolite/.gitolite.rc | 2 | ||||
-rw-r--r-- | tools/conf/srv/gitolite/gitolite.conf | 80 |
2 files changed, 81 insertions, 1 deletions
diff --git a/tools/conf/srv/gitolite/.gitolite.rc b/tools/conf/srv/gitolite/.gitolite.rc index e568453..fa18e4e 100644 --- a/tools/conf/srv/gitolite/.gitolite.rc +++ b/tools/conf/srv/gitolite/.gitolite.rc @@ -155,7 +155,7 @@ # 'partial-copy', # manage local, gitolite-controlled, copies of read-only upstream repos - # 'upstream', + 'upstream', # updates 'description' file instead of 'gitweb.description' config item # 'cgit', diff --git a/tools/conf/srv/gitolite/gitolite.conf b/tools/conf/srv/gitolite/gitolite.conf new file mode 100644 index 0000000..09133ec --- /dev/null +++ b/tools/conf/srv/gitolite/gitolite.conf @@ -0,0 +1,80 @@ +@guests = gitweb +@interns = silvino +@dev = silvino +@teamleads = silvino +@staff = @interns @dev @teamleads + +repo @secret + - = @guests + option deny-rules = 1 + +repo @floss + RW+ = @dev @staff + R = @all + +repo @project + RW+ = @teamleads + - master = @dev + - refs/tags/v[0-9] = @dev + RW+ develop/ = @dev + RW+ feature/ = @dev + RW+ hot-fix/ = @dev + RW = @dev + R = @interns + +repo @mirror + RW+ release/ = @teamleads + RW+ develop/ = @dev + RW+ feature/ = @dev + RW+ hot-fix/ = @dev + R = @all + +repo gitolite-admin + RW+ = gitolite + +repo c9-doc c9-ports c9-pmwiki c9-assistant + config gitweb.owner = "c9 team" + config gitweb.category = "c9" + +repo linux-pck + config gitweb.owner = "c9 team" + config gitweb.category = "mirrors" + +repo opt core contrib + config gitweb.owner = "crux" + config gitweb.category = "crux" + +repo c9-doc + config gitweb.description = "c9 documentation" + option hook.post-receive = deploy-web-doc + +repo c9-ports + config gitweb.description = "c9 ports" + +repo c9-pmwiki + config gitweb.description = "c9 wiki" + option hook.post-receive = deploy-web-doc + +repo c9-assistant + config gitweb.owner = "c9 team" + config gitweb.description = "c9 open assistant" + +repo core + config gitweb.description = "crux core collection" + +repo opt + config gitweb.description = "crux opt collection" + +repo contrib + config gitweb.description = "crux contrib collection" + +repo linux-pck + config gitweb.description = "PCK or Parabola Community Kernel are multiple patches, pf-kernel and zen-kernel for Linux-libre kernel" + option upstream.url = git://git.parabola.nu/pck.git + option upstream.nice = 120 + + +@secret = gitolite-admin +@project = c9-doc c9-ports c9-pmwiki c9-assistant +@project = core opt contrib +@mirror = linux-pck |