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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/ci/troubleshooting.md')
-rw-r--r--doc/ci/troubleshooting.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/ci/troubleshooting.md b/doc/ci/troubleshooting.md
index e0b8c6213de..cc7e5594466 100644
--- a/doc/ci/troubleshooting.md
+++ b/doc/ci/troubleshooting.md
@@ -230,7 +230,7 @@ The configuration can be added to:
job_name:
hooks:
pre_get_sources_script:
- - git config --local http.version "HTTP/1.1"
+ - git config --global http.version "HTTP/1.1"
```
- The [runner's `config.toml`](https://docs.gitlab.com/runner/configuration/advanced-configuration.html)
@@ -241,8 +241,8 @@ The configuration can be added to:
...
environment = [
"GIT_CONFIG_COUNT=1",
- "GIT_CONFIG_KEY_1=http.version",
- "GIT_CONFIG_VALUE_1=HTTP/1.1"
+ "GIT_CONFIG_KEY_0=http.version",
+ "GIT_CONFIG_VALUE_0=HTTP/1.1"
]
```