8 lines
269 B
PowerShell
8 lines
269 B
PowerShell
$u = "https://chromium.googlesource.com/chromium/src/third_party/freetype2.git"
|
|
|
|
$env:GIT_TRACE_CURL = "1"
|
|
$env:GIT_CURL_VERBOSE = "1"
|
|
|
|
git -c http.proxy=http://127.0.0.1:7897 `
|
|
-c https.proxy=http://127.0.0.1:7897 `
|
|
ls-remote $u 2>&1 | Tee-Object git_trace.log |