config.php 751 B

12345678910111213141516
  1. <?php
  2. /**
  3. * encodings: 提交日志的编码,比如GBK,可以用逗号连接起来的多个。
  4. * client: Git客户端执行文件的路径,windows下面是git.exe的路径,linux下面比如/usr/bin/git
  5. * repos可以是多个,需要设定某一个库的访问路径。
  6. *
  7. * encodeings: the encoding of the comment,can be a list.
  8. * client: the git client binary path. Unser windows, find the path of git.exe. Under linux, try /usr/bin/git
  9. * Can set multi repos, ervery one should set the path.
  10. *
  11. * 例子:
  12. * $config->git->client = '/usr/bin/git'; // c:\git\git.exe
  13. * $config->git->repos['pms']['path'] = '/home/user/repo/pms'; // c:\repo\pms
  14. * $config->git->repos['pms']['encoding'] = 'utf-8';
  15. *
  16. */