1<?php
2
3// location of your git executable
4define('GIT_EXEC', '/opt/local/bin/git');
5
6// delimeter character, don't change this unless you change functions
7// from git-utils.inc.php
8define('DELIMETER', '|');
9
10// root directory for your repositories
11define('ROOT_DIR', 'WHERE ARE YOUR REPOSITORIES LOCATED, ABSOLUTE PATH');
12
13// date format
14define('DATE_FORMAT','d.m.Y h:m');
15
16// REMEMBER TO REMOVE THIS LINE AFTER YOU HAVE MADE CONFIGURATIONS
17die('Remember to set configuration from '.__FILE__.' and remove the line which starts with "die"');
18?>
19