Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2021-03-18 18:07:07 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2021-03-23 16:32:49 +0300
commita4390b0dde5963b5861ea3ce478efa72b83522a6 (patch)
tree55e015058de88cac74291ef7b30a729289c3575c /config.toml.example
parent3d590c8511715d9a07853627d9fd24f191acb2f7 (diff)
config: Allow injection of git config via Gitaly's config
Now that we're moving git configuration into Gitaly, we are starting to discourage users to use the global git configuration to configure git. We must provide a way to inject configuration though to allow customers to inject custom configuration in special situations. This commit thus adds new git configuration which allows users to inject custom git config pairs.
Diffstat (limited to 'config.toml.example')
-rw-r--r--config.toml.example3
1 files changed, 3 insertions, 0 deletions
diff --git a/config.toml.example b/config.toml.example
index ac7a5be7b..223e91d4e 100644
--- a/config.toml.example
+++ b/config.toml.example
@@ -32,6 +32,9 @@ bin_dir = "/home/git/gitaly"
# [git]
# bin_path = "/usr/bin/git"
# catfile_cache_size = 100
+# [[git.config]]
+# key = fetch.fsckObjects
+# value = true
[[storage]]
name = "default"