ChiliProject is not maintained anymore. Please be advised that there will be no more updates.

We do not recommend that you setup new ChiliProject instances and we urge all existing users to migrate their data to a maintained system, e.g. Redmine. We will provide a migration script later. In the meantime, you can use the instructions by Christian Daehn.

Gitolite Integration

Become root

$ sudo su -

Create a new user for gitolite

# adduser --home /home/git --shell /bin/sh --disabled-login git

Preform the basic gitolite setup - http://sitaramc.github.com/gitolite/index.html#qi

Copy your SSH pubkey from your workstation. Rename it to <YourName>.pub

Become the git user

# su - git

Clone gitolite and set it up

git clone git://github.com/sitaramc/gitolite
gitolite/src/gl-system-install
gl-setup -q ~/<YourName>.pub

Following the redmine_git_hosting plugin docs - https://github.com/ericpaulbishop/redmine_git_hosting

Update the sudoers file and add the following (using visudo)

chiliproject  ALL=(git)          NOPASSWD:ALL
git           ALL=(chiliproject) NOPASSWD:ALL