Changes

Jump to: navigation, search

Gitolite

345 bytes added, 16:17, 22 February 2022
[[Category:Services]]
 
{{warning| This project is now deprecated.}}
{{warning| Gitolite is now in read-only mode as we are migrating to [http://gogs.io/ Gogs]. Our Gogs instance is available at https://git.fixme.ch/. See [[Git]] or ask [[User:dgellow]] for more informations.}}
 
== Goal ==
* Provides GIT repositories to the members.
* The deploy hook is located at <code>/home/git/hooks/deploy.sh</code> in the [[Internal_Server]].
* You must add a <code>post-receive</code> hook in your project in a file <code>/home/git/repositories/yourproject/hooks/post-receive</code> with the following content:
DIR=/wherepath/yourto/project/should/be/deployed #example: /var/www/foo/htdocs
APP=user-to-chown-to #example: www-data
/home/git/hooks/deploy.sh $APP $DIR
* Permissions fix for the hooks and repo
chmod +x /home/git/repositories/yourproject/hooks/post-receive
chown -R gitolite:$APP gitolite /wherehome/yourgit/projectrepositories/shouldyourproject/behooks/deployedpost-receive chmod chown -R 750 gitolite:$APP /wherepath/yourto/project find /shouldpath/beto/deployedproject -type f -exec chmod 640 {} \; find /path/to/project -type d -exec chmod 750 {} \;
* It's also a good thing to have a check of the database when you launch the application, and automatically create it if it doesn't yet exist.
290
edits