'IDF_Scm_Git', 'svn' => 'IDF_Scm_Svn', 'mercurial' => 'IDF_Scm_Mercurial', 'mtn' => 'IDF_Scm_Monotone', ); # Specific git config # The core.quotepath is configured on new repository # True -> All characters upper than 0x80 will be escape (default) # False -> Characters is print directly, enable accented character in a UTF-8 shell # $cfg['git_core_quotepath'] = false; # Set to true when uploaded public keys should not only be validated # syntactically, but also by the specific backend. For SSH public # keys, ssh-keygen(3) must be available and usable in PATH, for # monotone public keys, the monotone binary (as configured above) # is used. # $cfg['idf_strong_key_check'] = false; # If you want to use another memtypes database # $cfg['idf_mimetypes_db'] = '/etc/mime.types'; # Extra text files when displaying source # $cfg['idf_extra_text_ext'] = 'ext1 ext2 ext3'; # If you can execute the shell commands executed to get info # from the scm with the user of your PHP process but it is # not working from within PHP, this can be due to the environment # variables not being set correctly. Note the trailing space. # $cfg['idf_exec_cmd_prefix'] = '/usr/bin/env -i '; # Path to the SCM binaries. These binaries are not necessarily in # the path of your webserver or fastcgi process. In that case you # may need to set the path manually here. This is the case with OSX. # To know which path you need to provide, just run: # $ which git # from the command line. This will give you the path to git. # $cfg['svn_path'] = 'svn'; # $cfg['svnlook_path'] = 'svnlook'; # $cfg['svnadmin_path'] = 'svnadmin'; # $cfg['hg_path'] = 'hg'; # $cfg['git_path'] = 'git'; # If you do not want to have calculations of the repositories, attachments # and downloads size, set it to true. You can set to false some # times to times to check the size. # $cfg['idf_no_size_check'] = false; return $cfg;