mirror of
https://github.com/klaussilveira/gitlist.git
synced 2025-11-18 03:30:55 +01:00
Instead, we select a default branch - master by default, but the default branch can be configured using config.ini. Note that if the default branch does not exist in a repo, that should not cause any issues. Also adds phpunit to composer.json's require-dev section.
22 lines
597 B
Plaintext
22 lines
597 B
Plaintext
[git]
|
|
client = '/usr/bin/git' ; Your git executable path
|
|
repositories = '/var/www/projects/' ; Path to your repositories
|
|
default_branch = 'master' ; Default branch when HEAD is detached
|
|
|
|
; You can hide repositories from GitList, just copy this for each repository you want to hide
|
|
; hidden[] = '/var/www/projects/BetaTest'
|
|
|
|
[app]
|
|
debug = false
|
|
|
|
; If you need to specify custom filetypes for certain extensions, do this here
|
|
[filetypes]
|
|
; extension = type
|
|
; dist = xml
|
|
|
|
; If you need to set file types as binary or not, do this here
|
|
[binary_filetypes]
|
|
; extension = true
|
|
; svh = false
|
|
; map = true
|