File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed
Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change 44
55# increase the cache size
66sudo git config --global http.sslVerify false
7- sudo git config --global http.postBuffer 1048576000
7+ sudo git config --global http.postBuffer 1024MB # default is 1MB
8+ sudo git config --global http.maxRequestBuffer 100M # default is 10MB
9+ sudo git config --global core.compression 0
10+
11+ # enable the debug logs for git clone
12+ export GIT_TRACE_PACKET=1
13+ export GIT_TRACE=1
14+ export GIT_CURL_VERBOSE=1
815
916# try it again if the clone is slow and the second time
1017retried=false
@@ -19,6 +26,11 @@ timeout 1800 git clone https://git.ceph.com/ceph.git
1926trap - EXIT
2027cd ceph
2128
29+ # disable the debug logs for git clone
30+ export GIT_TRACE_PACKET=0
31+ export GIT_TRACE=0
32+ export GIT_CURL_VERBOSE=0
33+
2234versions=` seq 1 90`
2335
2436for v in $versions
You can’t perform that action at this time.
0 commit comments