We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ddc1ef commit 79c20abCopy full SHA for 79c20ab
2 files changed
docs/conf.py
@@ -19,3 +19,4 @@
19
"show_navbar_depth": 2,
20
}
21
html_title = "git2cpp documentation"
22
+myst_enable_extensions = ["deflist"]
docs/index.md
@@ -15,3 +15,14 @@ please create an issue in the [git2cpp github repository](https://github.com/Qua
15
:hidden:
16
created/git2cpp
17
```
18
+
+## Environment variables
+`GIT_HTTP_TIMEOUT`
+: In the WebAssembly build, all http(s) requests are limited by a timeout which has a default of 10
23
+ seconds. To use a different timeout set the `GIT_HTTP_TIMEOUT` environment variable. For example,
24
+ to set a timeout of 20 seconds use:
25
26
+ ```bash
27
+ export GIT_HTTP_TIMEOUT=20
28
+ ```
0 commit comments