esp-rs / esp-idf-svc

Type-Safe Rust Wrappers for various ESP-IDF services (WiFi, Network, Httpd, Logging, etc.)
https://docs.esp-rs.org/esp-idf-svc/
Apache License 2.0
309 stars 175 forks source link

Error when running "cargo build" after running "cargo generate esp-rs/esp-idf-template generate" on Ubuntu #436

Closed Spyker2000 closed 3 months ago

Spyker2000 commented 3 months ago

image

Vollbrecht commented 3 months ago

what ESP_IDF_VERSION are you using?

Also can you please check if the issue persist with our close to release esp-idf-svc version from git?

You can test them out by adding the following into your Cargo.toml

[patch.crates-io]
embuild ={ git = "https://github.com/esp-rs/embuild"}
esp-idf-svc ={ git = "https://github.com/esp-rs/esp-idf-svc"}
esp-idf-hal ={ git = "https://github.com/esp-rs/esp-idf-hal"}
esp-idf-sys ={ git = "https://github.com/esp-rs/esp-idf-sys"}
embedded-svc ={ git = "https://github.com/esp-rs/embedded-svc"}

and then run cargo clean + cargo update and then run cargo build

Spyker2000 commented 3 months ago

I did everything requested and then got this when building,

t00Xp2648HSvUkUH

Vollbrecht commented 3 months ago

a) do you have any ESP_IDF specifc env variables in your environement? For example does env | grep ESP give any output? b) what ESP_IDF_VERSION is written inside the .cargo/config.toml in your project root? c) what options did you pick when running the cargo generate template?

Spyker2000 commented 3 months ago

a) gavin@gavin-ubuntu:~$ env | grep ESP

gavin@gavin-ubuntu:~$ env | grep esp

PATH=/home/gavin/.cargo/bin:/home/gavin/esp/esp-idf/tools:/home/gavin/.local/bin:/home/gavin/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin

b)

gavin@gavin-ubuntu:~/gavin_rust_1$ ls -al total 124

drwxrwxr-x   9 gavin gavin  4096 Jun 21 11:31 .
drwxr----- 151 gavin gavin 20480 Jun 21 14:35 ..
drwxrwxr-x   2 gavin gavin  4096 Jun 17 11:16 build
-rw-r--r--   1 gavin gavin    53 Jun 16 16:54 build.rs
drwxrwxr-x   2 gavin gavin  4096 Jun 16 16:54 .cargo
-rw-rw-r--   1 gavin gavin 49669 Jun 21 11:21 Cargo.lock
-rw-r--r--   1 gavin gavin  1268 Jun 21 11:19 Cargo.toml
drwxrwxr-x   3 gavin gavin  4096 Jun 16 16:55 .embuild
drwxrwxr-x   6 gavin gavin  4096 Jun 21 11:32 .git
-rw-r--r--   1 gavin gavin    39 Jun 16 16:54 .gitignore
-rw-r--r--   1 gavin gavin    28 Jun 16 16:54 rust-toolchain.toml -rw-r--r--   1 gavin gavin   465 Jun 16 16:54 sdkconfig.defaults
drwxrwxr-x   2 gavin gavin  4096 Jun 16 16:54 src drwxrwxr-x   4 gavin gavin  4096 Jun 21 11:32 target> drwxrwxr-x   2 gavin gavin  4096 Jun 16 16:54 .vscode

c) cargo options

Spyker2000 commented 3 months ago

cargo options

Spyker2000 commented 3 months ago

I originally started (about a year ago) with Espressif cli when I purchased some ESP32's and then shifted to Platformio and then started with Rust about a month ago. Programmed for many years with Arduino IDE.

Spyker2000 commented 3 months ago

I have also tried the recommended alias get_esprs when I open a NEW terminal and I get the same error message.

gavin@gavin-ubuntu:~/gavin_rust_1$ get_esprs
gavin@gavin-ubuntu:~/gavin_rust_1$ env | grep esp
IDF_PATH=/home/gavin/esp/esp-idf
LIBCLANG_PATH=/home/gavin/.rustup/toolchains/esp/xtensa-esp32-elf-clang/esp-16.0.4-20231113/esp-clang/lib
PATH=/home/gavin/.rustup/toolchains/esp/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin:/home/gavin/.rustup/toolchains/esp/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin:/home/gavin/.cargo/bin:/home/gavin/esp/esp-idf/tools:/home/gavin/.local/bin:/home/gavin/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin
Vollbrecht commented 3 months ago

What you are seeing should only happen when for one reason or another the used esp-idf-version does not correspond with the one we want to build for.

By default with the settings you used from the cargo generate project, we pull the corresponding version of esp-idf ourself into the .embuild directory and also put the necessary tools there to build it. We don't set any additional env variables, they are only directly put forward by cargo, though we pick them up if a user brings it's own esp-idf installation into play.

If you provide your own IDF_PATH that is not corresponding to the ESP_IDF_VERSION set inside the .cargo/config.toml file than there will be confusion in the build system. Simmilar problems arise with incompatible xtensa/riscv gcc tool version installed.

The simplest way is that you use an environement where you dont provide an IDF_PATH so its all automatically handeld for you, otherwise you would manually need to match your system installed esp-idf version with the one you are setting to use in the template. ( E.g the values set in .cargo/config.toml )

Spyker2000 commented 3 months ago

I will take a look at tonight and see what I can do. I will let you know the outcome.

Spyker2000 commented 3 months ago

I removed IDF_PATH=/home/gavin/esp/esp-idf/ using unset IDF_PATH and did a cargo clean, update and build and things improved. I now get the following error message

Compiling embedded-svc v0.28.0
error: failed to run custom build command for `esp-idf-sys v0.35.0`

Caused by:
 process didn't exit successfully: `/home/gavin/gavin_amended_1/target/debug/build/esp-idf-sys-7a2058df72632f80/.build-script-build` (exit status: 1)
  --- stdout
  cargo:rerun-if-env-changed=ESP_IDF_TOOLS_INSTALL_DIR
  cargo:rerun-if-env-changed=ESP_IDF_SDKCONFIG
  cargo:rerun-if-env-changed=ESP_IDF_SDKCONFIG_DEFAULTS
  cargo:rerun-if-env-changed=MCU
  cargo:rerun-if-env-changed=ESP_IDF_SYS_ROOT_CRATE
  cargo:rerun-if-env-changed=ESP_IDF_VERSION
  cargo:rerun-if-env-changed=ESP_IDF_REPOSITORY
  cargo:rerun-if-env-changed=ESP_IDF_CMAKE_GENERATOR
  cargo:rerun-if-env-changed=IDF_PATH
  cargo:rerun-if-env-changed=EXTRA-COMPONENTS
  cargo:rerun-if-env-changed=ESP_IDF_COMPONENTS
  cargo:rerun-if-env-changed=ESP_IDF_COMPONENT_MANAGER

  --- stderr
  Build configuration: BuildConfig {
      esp_idf_tools_install_dir: None,
      esp_idf_sdkconfig: None,
      esp_idf_sdkconfig_defaults: None,
      mcu: Some(
          "esp32",
      ),
      native: NativeConfig {
          esp_idf_version: Some(
              Tag(
                  "v5.2.2",
              ),
          ),
          esp_idf_repository: None,
          esp_idf_cmake_generator: None,
          idf_path: None,
          extra_components: [],
          esp_idf_components: None,
          esp_idf_component_manager: None,
      },
      esp_idf_sys_root_crate: None,
  }
  Using managed esp-idf repository: RemoteSdk { repo_url: None, git_ref: Tag("v5.2.2") }
  Cloning into '/home/gavin/gavin_amended_1/.embuild/espressif/esp-idf/v5.2.2'...
  error: RPC failed; curl 92 HTTP/2 stream 5 was not closed cleanly: CANCEL (err 8)
  error: 487 bytes of body are still expected
  fetch-pack: unexpected disconnect while reading sideband packet
  fatal: early EOF
  fatal: fetch-pack: invalid index-pack output
  Error: Could not install esp-idf

  Caused by:
      command '"git" "clone" "--jobs=12" "--recursive" "--depth" "1" "--shallow-submodules" "--branch" "v5.2.2" "https://github.com/espressif/esp-idf.git" "/home/gavin/gavin_amended_1/.embuild/espressif/esp-idf/v5.2.2"' exited with non-zero status code 128
Spyker2000 commented 3 months ago

There is however a PATH setting /home/gavin/esp/esp-idf/tools which is not a Enviromental variable as such. I don"t think this is an issue.

PATH=/home/gavin/.cargo/bin:/home/gavin/esp/esp-idf/tools:/home/gavin/.local/bin:/home/gavin/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/snap/bin

Spyker2000 commented 3 months ago

I created a new project /home/gavin/gavin_amended_1/ I had the same errors with my original project.

Vollbrecht commented 3 months ago

The error around the git clone seams like a spurios network error, that sounds a bit unfortunate. To make sure i would delete the .embuild dir inside your project and when a new build is run it should be creating a new instance off .embuild dir.

Regarding other stuff set in your PATH, that should not be a problem, as yes we look into the path, but the tools we are using are prepending to the PATH, e.g first reading from the tools inside .embuild. That was only a problem if you provide the specific IDF_PATH env var.

Spyker2000 commented 3 months ago

I tried again this morning with the errors.

I deleted .embuild

I did a clean, update and build.

gavin@gavin-ubuntu:~/gavin_amended_1$ cargo clean
     Removed 1406 files, 1.1GiB total
```gavin@gavin-ubuntu:~/gavin_amended_1$ ls .embuild/
espressif
gavin@gavin-ubuntu:~/gavin_amended_1$ ls .embuild/ -al
total 12
drwxrwxr-x 3 gavin gavin 4096 Jun 25 13:49 .
drwxrwxr-x 8 gavin gavin 4096 Jun 25 13:49 ..
drwxrwxr-x 3 gavin gavin 4096 Jun 25 13:49 espressif
gavin@gavin-ubuntu:~/gavin_amended_1$ cd .embuild/
gavin@gavin-ubuntu:~/gavin_amended_1/.embuild$ ls
espressif
gavin@gavin-ubuntu:~/gavin_amended_1/.embuild$ cd espressif/
gavin@gavin-ubuntu:~/gavin_amended_1/.embuild/espressif$ ls
esp-idf
gavin@gavin-ubuntu:~/gavin_amended_1/.embuild/espressif$ cd esp-idf/
gavin@gavin-ubuntu:~/gavin_amended_1/.embuild/espressif/esp-idf$ ls
gavin@gavin-ubuntu:~/gavin_amended_1/.embuild/espressif/esp-idf$ 

 and a cargo update

gavin@gavin-ubuntu:~/gavin_amended_1$ cargo update Updating git repository https://github.com/esp-rs/embedded-svc Updating git repository https://github.com/esp-rs/embuild Updating git repository https://github.com/esp-rs/esp-idf-hal Updating git repository https://github.com/esp-rs/esp-idf-svc Updating git repository https://github.com/esp-rs/esp-idf-sys Updating crates.io index Removing embedded-svc v0.28.0 Adding embedded-svc v0.28.0 (https://github.com/esp-rs/embedded-svc#30133e01) Removing embuild v0.32.0 Adding embuild v0.32.0 (https://github.com/esp-rs/embuild#5c30249c) Removing esp-idf-hal v0.44.0 Adding esp-idf-hal v0.44.0 (https://github.com/esp-rs/esp-idf-hal#d849cac7) Removing esp-idf-svc v0.49.0 Adding esp-idf-svc v0.49.0 (https://github.com/esp-rs/esp-idf-svc#128607c5) Removing esp-idf-sys v0.35.0 Adding esp-idf-sys v0.35.0 (https://github.com/esp-rs/esp-idf-sys#ff086e7d)

and then a cargo build ,

and waited about 10-15 mins  and got the following ,                                           

gavin@gavin-ubuntu:~/gavin_amended_1$ cargo build Compiling bindgen v0.69.4 Compiling embuild v0.32.0 (https://github.com/esp-rs/embuild#5c30249c) Compiling esp-idf-sys v0.35.0 (https://github.com/esp-rs/esp-idf-sys#ff086e7d) Compiling esp-idf-hal v0.44.0 (https://github.com/esp-rs/esp-idf-hal#d849cac7) Compiling esp-idf-svc v0.49.0 (https://github.com/esp-rs/esp-idf-svc#128607c5) Compiling gavin_amended_1 v0.1.0 (/home/gavin/gavin_amended_1) error: failed to run custom build command for esp-idf-sys v0.35.0 (https://github.com/esp-rs/esp-idf-sys#ff086e7d)

Caused by: process didn't exit successfully: /home/gavin/gavin_amended_1/target/debug/build/esp-idf-sys-3cbdaafc966db396/build-script-build (exit status: 1) --- stdout cargo:rerun-if-env-changed=ESP_IDF_TOOLS_INSTALL_DIR cargo:rerun-if-env-changed=ESP_IDF_SDKCONFIG cargo:rerun-if-env-changed=ESP_IDF_SDKCONFIG_DEFAULTS cargo:rerun-if-env-changed=MCU cargo:rerun-if-env-changed=ESP_IDF_SYS_ROOT_CRATE cargo:rerun-if-env-changed=ESP_IDF_VERSION cargo:rerun-if-env-changed=ESP_IDF_REPOSITORY cargo:rerun-if-env-changed=ESP_IDF_CMAKE_GENERATOR cargo:rerun-if-env-changed=IDF_PATH cargo:rerun-if-env-changed=EXTRA-COMPONENTS cargo:rerun-if-env-changed=ESP_IDF_COMPONENTS cargo:rerun-if-env-changed=ESP_IDF_COMPONENT_MANAGER

--- stderr Build configuration: BuildConfig { esp_idf_tools_install_dir: None, esp_idf_sdkconfig: None, esp_idf_sdkconfig_defaults: None, mcu: Some( "esp32", ), native: NativeConfig { esp_idf_version: Some( Tag( "v5.2.2", ), ), esp_idf_repository: None, esp_idf_cmake_generator: None, idf_path: None, extra_components: [], esp_idf_components: None, esp_idf_component_manager: None, }, esp_idf_sys_root_crate: None, } Using managed esp-idf repository: RemoteSdk { repo_url: None, git_ref: Tag("v5.2.2") } Cloning into '/home/gavin/gavin_amended_1/.embuild/espressif/esp-idf/v5.2.2'... error: 7438 bytes of body are still expected fetch-pack: unexpected disconnect while reading sideband packet fatal: early EOF fatal: fetch-pack: invalid index-pack output Error: Could not install esp-idf

Caused by: command '"git" "clone" "--jobs=12" "--recursive" "--depth" "1" "--shallow-submodules" "--branch" "v5.2.2" "https://github.com/espressif/esp-idf.git" "/home/gavin/gavin_amended_1/.embuild/espressif/esp-idf/v5.2.2"' exited with non-zero status code 128


The .embuild directory is re-created but the esp-idf directory is empty

screenshot

Vollbrecht commented 3 months ago

hmm can you test if you can manually successfully run the git clone in an empty directory and see if it errors out with the same message? E.g run the exact command like this git clone --jobs=12 --recursive --depth 1 --shallow-submodules --branch v5.2.2 https://github.com/espressif/esp-idf.git and it should create an directory called esp-idf that contains the idf plus all submodules

Vollbrecht commented 3 months ago

you may also want to read this on stackoverflow

Spyker2000 commented 3 months ago

I tried again this morning with the errors.

I deleted .embuild

I did a clean, update and build.

gavin@gavin-ubuntu:~/gavin_amended_1$ cargo clean
     Removed 1406 files, 1.1GiB total
```gavin@gavin-ubuntu:~/gavin_amended_1$ ls .embuild/
espressif
gavin@gavin-ubuntu:~/gavin_amended_1$ ls .embuild/ -al
total 12
drwxrwxr-x 3 gavin gavin 4096 Jun 25 13:49 .
drwxrwxr-x 8 gavin gavin 4096 Jun 25 13:49 ..
drwxrwxr-x 3 gavin gavin 4096 Jun 25 13:49 espressif
gavin@gavin-ubuntu:~/gavin_amended_1$ cd .embuild/
gavin@gavin-ubuntu:~/gavin_amended_1/.embuild$ ls
espressif
gavin@gavin-ubuntu:~/gavin_amended_1/.embuild$ cd espressif/
gavin@gavin-ubuntu:~/gavin_amended_1/.embuild/espressif$ ls
esp-idf
gavin@gavin-ubuntu:~/gavin_amended_1/.embuild/espressif$ cd esp-idf/
gavin@gavin-ubuntu:~/gavin_amended_1/.embuild/espressif/esp-idf$ ls
gavin@gavin-ubuntu:~/gavin_amended_1/.embuild/espressif/esp-idf$ 

 and a cargo update

gavin@gavin-ubuntu:~/gavin_amended_1$ cargo update Updating git repository https://github.com/esp-rs/embedded-svc Updating git repository https://github.com/esp-rs/embuild Updating git repository https://github.com/esp-rs/esp-idf-hal Updating git repository https://github.com/esp-rs/esp-idf-svc Updating git repository https://github.com/esp-rs/esp-idf-sys Updating crates.io index Removing embedded-svc v0.28.0 Adding embedded-svc v0.28.0 (https://github.com/esp-rs/embedded-svc#30133e01) Removing embuild v0.32.0 Adding embuild v0.32.0 (https://github.com/esp-rs/embuild#5c30249c) Removing esp-idf-hal v0.44.0 Adding esp-idf-hal v0.44.0 (https://github.com/esp-rs/esp-idf-hal#d849cac7) Removing esp-idf-svc v0.49.0 Adding esp-idf-svc v0.49.0 (https://github.com/esp-rs/esp-idf-svc#128607c5) Removing esp-idf-sys v0.35.0 Adding esp-idf-sys v0.35.0 (https://github.com/esp-rs/esp-idf-sys#ff086e7d)

and then a cargo build ,

and waited about 10-15 mins  and got the following ,                                           

gavin@gavin-ubuntu:~/gavin_amended_1$ cargo build Compiling bindgen v0.69.4 Compiling embuild v0.32.0 (https://github.com/esp-rs/embuild#5c30249c) Compiling esp-idf-sys v0.35.0 (https://github.com/esp-rs/esp-idf-sys#ff086e7d) Compiling esp-idf-hal v0.44.0 (https://github.com/esp-rs/esp-idf-hal#d849cac7) Compiling esp-idf-svc v0.49.0 (https://github.com/esp-rs/esp-idf-svc#128607c5) Compiling gavin_amended_1 v0.1.0 (/home/gavin/gavin_amended_1) error: failed to run custom build command for esp-idf-sys v0.35.0 (https://github.com/esp-rs/esp-idf-sys#ff086e7d)

Caused by: process didn't exit successfully: /home/gavin/gavin_amended_1/target/debug/build/esp-idf-sys-3cbdaafc966db396/build-script-build (exit status: 1) --- stdout cargo:rerun-if-env-changed=ESP_IDF_TOOLS_INSTALL_DIR cargo:rerun-if-env-changed=ESP_IDF_SDKCONFIG cargo:rerun-if-env-changed=ESP_IDF_SDKCONFIG_DEFAULTS cargo:rerun-if-env-changed=MCU cargo:rerun-if-env-changed=ESP_IDF_SYS_ROOT_CRATE cargo:rerun-if-env-changed=ESP_IDF_VERSION cargo:rerun-if-env-changed=ESP_IDF_REPOSITORY cargo:rerun-if-env-changed=ESP_IDF_CMAKE_GENERATOR cargo:rerun-if-env-changed=IDF_PATH cargo:rerun-if-env-changed=EXTRA-COMPONENTS cargo:rerun-if-env-changed=ESP_IDF_COMPONENTS cargo:rerun-if-env-changed=ESP_IDF_COMPONENT_MANAGER

--- stderr Build configuration: BuildConfig { esp_idf_tools_install_dir: None, esp_idf_sdkconfig: None, esp_idf_sdkconfig_defaults: None, mcu: Some( "esp32", ), native: NativeConfig { esp_idf_version: Some( Tag( "v5.2.2", ), ), esp_idf_repository: None, esp_idf_cmake_generator: None, idf_path: None, extra_components: [], esp_idf_components: None, esp_idf_component_manager: None, }, esp_idf_sys_root_crate: None, } Using managed esp-idf repository: RemoteSdk { repo_url: None, git_ref: Tag("v5.2.2") } Cloning into '/home/gavin/gavin_amended_1/.embuild/espressif/esp-idf/v5.2.2'... error: 7438 bytes of body are still expected fetch-pack: unexpected disconnect while reading sideband packet fatal: early EOF fatal: fetch-pack: invalid index-pack output Error: Could not install esp-idf

Caused by: command '"git" "clone" "--jobs=12" "--recursive" "--depth" "1" "--shallow-submodules" "--branch" "v5.2.2" "https://github.com/espressif/esp-idf.git" "/home/gavin/gavin_amended_1/.embuild/espressif/esp-idf/v5.2.2"' exited with non-zero status code 128


The .embuild directory is re-created but the esp-idf directory is empty

screenshot

Spyker2000 commented 3 months ago

gavin@gavin-ubuntu:~$ git clone --jobs=12 --recursive --depth 1 --shallow-submodules --branch v5.2.2 https://github.com/espressif/esp-idf.git

Cloning into 'esp-idf'... remote: Enumerating objects: 14951, done. remote: Counting objects: 100% (14951/14951), done. remote: Compressing objects: 100% (11693/11693), done. error: RPC failed; curl 92 HTTP/2 stream 5 was not closed cleanly: CANCEL (err 8) error: 4121 bytes of body are still expected fetch-pack: unexpected disconnect while reading sideband packet fatal: early EOF fatal: fetch-pack: invalid index-pack output

gavin@gavin-ubuntu:~$

Spyker2000 commented 3 months ago

I am trying out these commands

export GIT_TRACE_PACKET=1 export GIT_TRACE=1 export GIT_CURL_VERBOSE=1

Spyker2000 commented 3 months ago

gavin@gavin-ubuntu:~$ export GIT_TRACE_PACKET=1

gavin@gavin-ubuntu:~$ export GIT_TRACE=1

gavin@gavin-ubuntu:~$ export GIT_CURL_VERBOSE=1

gavin@gavin-ubuntu:~$ git clone --jobs=12 --recursive --depth 1 --shallow-submodules --branch v5.2.2 https://github.com/espressif/esp-idf.git 15:47:55.284898 git.c:463 trace: built-in: git clone --jobs=12 --recursive --depth 1 --shallow-submodules --branch v5.2.2 https://github.com/espressif/esp-idf.git Cloning into 'esp-idf'... 15:47:55.335109 run-command.c:659 trace: run_command: git remote-https origin https://github.com/espressif/esp-idf.git 15:47:55.336497 git.c:749 trace: exec: git-remote-https origin https://github.com/espressif/esp-idf.git 15:47:55.336531 run-command.c:659 trace: run_command: git-remote-https origin https://github.com/espressif/esp-idf.git 15:47:55.340818 http.c:845 == Info: Couldn't find host github.com in the .netrc file; using defaults 15:47:55.376234 http.c:845 == Info: Host github.com:443 was resolved. 15:47:55.376256 http.c:845 == Info: IPv6: (none) 15:47:55.376259 http.c:845 == Info: IPv4: 20.87.245.0 15:47:55.376302 http.c:845 == Info: Trying 20.87.245.0:443... 15:47:55.409629 http.c:845 == Info: Connected to github.com (20.87.245.0) port 443 15:47:55.430230 http.c:845 == Info: found 440 certificates in /etc/ssl/certs 15:47:55.430277 http.c:845 == Info: GnuTLS ciphers: NORMAL:-ARCFOUR-128:-CTYPE-ALL:+CTYPE-X509:-VERS-SSL3.0 15:47:55.430294 http.c:845 == Info: ALPN: curl offers h2,http/1.1 15:47:55.461082 http.c:845 == Info: SSL connection using TLS1.3 / ECDHE_RSA_AES_128_GCM_SHA256 15:47:55.462527 http.c:845 == Info: server certificate verification OK 15:47:55.462534 http.c:845 == Info: server certificate status verification SKIPPED 15:47:55.462581 http.c:845 == Info: common name: github.com (matched) 15:47:55.462586 http.c:845 == Info: server certificate expiration date OK 15:47:55.462589 http.c:845 == Info: server certificate activation date OK 15:47:55.462595 http.c:845 == Info: certificate public key: EC/ECDSA 15:47:55.462600 http.c:845 == Info: certificate version: #3 15:47:55.462606 http.c:845 == Info: subject: CN=github.com 15:47:55.462612 http.c:845 == Info: start date: Thu, 07 Mar 2024 00:00:00 GMT 15:47:55.462615 http.c:845 == Info: expire date: Fri, 07 Mar 2025 23:59:59 GMT 15:47:55.462627 http.c:845 == Info: issuer: C=GB,ST=Greater Manchester,L=Salford,O=Sectigo Limited,CN=Sectigo ECC Domain Validation Secure Server CA 15:47:55.462635 http.c:845 == Info: ALPN: server accepted h2 15:47:55.462691 http.c:845 == Info: using HTTP/2 15:47:55.462722 http.c:845 == Info: [HTTP/2] [1] OPENED stream for https://github.com/espressif/esp-idf.git/info/refs?service=git-upload-pack 15:47:55.462727 http.c:845 == Info: [HTTP/2] [1] [:method: GET] 15:47:55.462731 http.c:845 == Info: [HTTP/2] [1] [:scheme: https] 15:47:55.462735 http.c:845 == Info: [HTTP/2] [1] [:authority: github.com] 15:47:55.462741 http.c:845 == Info: [HTTP/2] [1] [:path: /espressif/esp-idf.git/info/refs?service=git-upload-pack] 15:47:55.462744 http.c:845 == Info: [HTTP/2] [1] [user-agent: git/2.43.0] 15:47:55.462747 http.c:845 == Info: [HTTP/2] [1] [accept: /] 15:47:55.462749 http.c:845 == Info: [HTTP/2] [1] [accept-encoding: deflate, gzip, br, zstd] 15:47:55.462753 http.c:845 == Info: [HTTP/2] [1] [accept-language: en-ZA, en;q=0.9, ;q=0.8] 15:47:55.462757 http.c:845 == Info: [HTTP/2] [1] [pragma: no-cache] 15:47:55.462761 http.c:845 == Info: [HTTP/2] [1] [git-protocol: version=2] 15:47:55.462800 http.c:792 => Send header, 0000000254 bytes (0x000000fe) 15:47:55.462806 http.c:804 => Send header: GET /espressif/esp-idf.git/info/refs?service=git-upload-pack HTTP/2 15:47:55.462809 http.c:804 => Send header: Host: github.com 15:47:55.462812 http.c:804 => Send header: User-Agent: git/2.43.0 15:47:55.462814 http.c:804 => Send header: Accept: / 15:47:55.462818 http.c:804 => Send header: Accept-Encoding: deflate, gzip, br, zstd 15:47:55.462822 http.c:804 => Send header: Accept-Language: en-ZA, en;q=0.9, ;q=0.8 15:47:55.462826 http.c:804 => Send header: Pragma: no-cache 15:47:55.462828 http.c:804 => Send header: Git-Protocol: version=2 15:47:55.462831 http.c:804 => Send header: 15:47:55.753466 http.c:792 <= Recv header, 0000000013 bytes (0x0000000d) 15:47:55.753486 http.c:804 <= Recv header: HTTP/2 200 15:47:55.753493 http.c:792 <= Recv header, 0000000026 bytes (0x0000001a) 15:47:55.753497 http.c:804 <= Recv header: server: GitHub-Babel/3.0 15:47:55.753502 http.c:792 <= Recv header, 0000000059 bytes (0x0000003b) 15:47:55.753506 http.c:804 <= Recv header: content-type: application/x-git-upload-pack-advertisement 15:47:55.753510 http.c:792 <= Recv header, 0000000054 bytes (0x00000036) 15:47:55.753516 http.c:804 <= Recv header: content-security-policy: default-src 'none'; sandbox 15:47:55.753520 http.c:792 <= Recv header, 0000000040 bytes (0x00000028) 15:47:55.753524 http.c:804 <= Recv header: expires: Fri, 01 Jan 1980 00:00:00 GMT 15:47:55.753528 http.c:792 <= Recv header, 0000000018 bytes (0x00000012) 15:47:55.753532 http.c:804 <= Recv header: pragma: no-cache 15:47:55.753536 http.c:792 <= Recv header, 0000000053 bytes (0x00000035) 15:47:55.753539 http.c:804 <= Recv header: cache-control: no-cache, max-age=0, must-revalidate 15:47:55.753543 http.c:792 <= Recv header, 0000000023 bytes (0x00000017) 15:47:55.753547 http.c:804 <= Recv header: vary: Accept-Encoding 15:47:55.753551 http.c:792 <= Recv header, 0000000037 bytes (0x00000025) 15:47:55.753555 http.c:804 <= Recv header: date: Tue, 25 Jun 2024 13:47:54 GMT 15:47:55.753559 http.c:792 <= Recv header, 0000000023 bytes (0x00000017) 15:47:55.753563 http.c:804 <= Recv header: x-frame-options: DENY 15:47:55.753566 http.c:792 <= Recv header, 0000000057 bytes (0x00000039) 15:47:55.753570 http.c:804 <= Recv header: x-github-request-id: 98D8:255632:5AA6CE:7A217D:667ACA8B 15:47:55.753575 http.c:792 <= Recv header, 0000000002 bytes (0x00000002) 15:47:55.753579 http.c:804 <= Recv header: 15:47:55.753605 http.c:845 == Info: Connection #0 to host github.com left intact 15:47:55.753618 pkt-line.c:85 packet: git< # service=git-upload-pack 15:47:55.753622 pkt-line.c:85 packet: git< 0000 15:47:55.753626 pkt-line.c:85 packet: git< version 2 15:47:55.753631 pkt-line.c:85 packet: git< agent=git/github-74f58a100f14 15:47:55.753635 pkt-line.c:85 packet: git< ls-refs=unborn 15:47:55.753638 pkt-line.c:85 packet: git< fetch=shallow wait-for-done filter 15:47:55.753642 pkt-line.c:85 packet: git< server-option 15:47:55.753646 pkt-line.c:85 packet: git< object-format=sha1 15:47:55.753650 pkt-line.c:85 packet: git< 0000 15:47:55.753727 pkt-line.c:85 packet: clone< version 2 15:47:55.753742 pkt-line.c:85 packet: clone< agent=git/github-74f58a100f14 15:47:55.753747 pkt-line.c:85 packet: clone< ls-refs=unborn 15:47:55.753752 pkt-line.c:85 packet: clone< fetch=shallow wait-for-done filter 15:47:55.753755 pkt-line.c:85 packet: clone< server-option 15:47:55.753760 pkt-line.c:85 packet: clone< object-format=sha1 15:47:55.753767 pkt-line.c:85 packet: clone< 0000 15:47:55.753773 pkt-line.c:85 packet: clone> command=ls-refs 15:47:55.753781 pkt-line.c:85 packet: clone> agent=git/2.43.0 15:47:55.753786 pkt-line.c:85 packet: clone> object-format=sha1 15:47:55.753789 pkt-line.c:85 packet: clone> 0001 15:47:55.753789 pkt-line.c:85 packet: git< command=ls-refs 15:47:55.753794 pkt-line.c:85 packet: clone> peel 15:47:55.753796 pkt-line.c:85 packet: git< agent=git/2.43.0 15:47:55.753798 pkt-line.c:85 packet: clone> symrefs 15:47:55.753802 pkt-line.c:85 packet: git< object-format=sha1 15:47:55.753805 pkt-line.c:85 packet: clone> unborn 15:47:55.753806 pkt-line.c:85 packet: git< 0001 15:47:55.753809 pkt-line.c:85 packet: clone> ref-prefix HEAD 15:47:55.753811 pkt-line.c:85 packet: git< peel 15:47:55.753813 pkt-line.c:85 packet: clone> ref-prefix refs/heads/ 15:47:55.753817 pkt-line.c:85 packet: git< symrefs 15:47:55.753818 pkt-line.c:85 packet: clone> ref-prefix v5.2.2 15:47:55.753821 pkt-line.c:85 packet: git< unborn 15:47:55.753821 pkt-line.c:85 packet: clone> ref-prefix refs/v5.2.2 15:47:55.753826 pkt-line.c:85 packet: clone> ref-prefix refs/tags/v5.2.2 15:47:55.753826 pkt-line.c:85 packet: git< ref-prefix HEAD 15:47:55.753832 pkt-line.c:85 packet: clone> ref-prefix refs/heads/v5.2.2 15:47:55.753833 pkt-line.c:85 packet: git< ref-prefix refs/heads/ 15:47:55.753836 pkt-line.c:85 packet: clone> ref-prefix refs/remotes/v5.2.2 15:47:55.753837 pkt-line.c:85 packet: git< ref-prefix v5.2.2 15:47:55.753840 pkt-line.c:85 packet: clone> ref-prefix refs/remotes/v5.2.2/HEAD 15:47:55.753841 pkt-line.c:85 packet: git< ref-prefix refs/v5.2.2 15:47:55.753844 pkt-line.c:85 packet: clone> ref-prefix refs/tags/ 15:47:55.753846 pkt-line.c:85 packet: git< ref-prefix refs/tags/v5.2.2 15:47:55.753847 pkt-line.c:85 packet: clone> 0000 15:47:55.753851 pkt-line.c:85 packet: git< ref-prefix refs/heads/v5.2.2 15:47:55.753857 pkt-line.c:85 packet: git< ref-prefix refs/remotes/v5.2.2 15:47:55.753862 pkt-line.c:85 packet: git< ref-prefix refs/remotes/v5.2.2/HEAD 15:47:55.753867 pkt-line.c:85 packet: git< ref-prefix refs/tags/ 15:47:55.753872 pkt-line.c:85 packet: git< 0000 15:47:55.753925 http.c:845 == Info: Couldn't find host github.com in the .netrc file; using defaults 15:47:55.753933 http.c:845 == Info: Found bundle for host: 0x5ba820c1b4f0 [can multiplex] 15:47:55.753939 http.c:845 == Info: Re-using existing connection with host github.com 15:47:55.753985 http.c:845 == Info: [HTTP/2] [3] OPENED stream for https://github.com/espressif/esp-idf.git/git-upload-pack 15:47:55.753991 http.c:845 == Info: [HTTP/2] [3] [:method: POST] 15:47:55.753994 http.c:845 == Info: [HTTP/2] [3] [:scheme: https] 15:47:55.753998 http.c:845 == Info: [HTTP/2] [3] [:authority: github.com] 15:47:55.754002 http.c:845 == Info: [HTTP/2] [3] [:path: /espressif/esp-idf.git/git-upload-pack] 15:47:55.754006 http.c:845 == Info: [HTTP/2] [3] [user-agent: git/2.43.0] 15:47:55.754010 http.c:845 == Info: [HTTP/2] [3] [accept-encoding: deflate, gzip, br, zstd] 15:47:55.754013 http.c:845 == Info: [HTTP/2] [3] [content-type: application/x-git-upload-pack-request] 15:47:55.754017 http.c:845 == Info: [HTTP/2] [3] [accept: application/x-git-upload-pack-result] 15:47:55.754021 http.c:845 == Info: [HTTP/2] [3] [accept-language: en-ZA, en;q=0.9, ;q=0.8] 15:47:55.754024 http.c:845 == Info: [HTTP/2] [3] [git-protocol: version=2] 15:47:55.754028 http.c:845 == Info: [HTTP/2] [3] [content-length: 364] 15:47:55.754087 http.c:792 => Send header, 0000000326 bytes (0x00000146) 15:47:55.754095 http.c:804 => Send header: POST /espressif/esp-idf.git/git-upload-pack HTTP/2 15:47:55.754097 http.c:804 => Send header: Host: github.com 15:47:55.754102 http.c:804 => Send header: User-Agent: git/2.43.0 15:47:55.754105 http.c:804 => Send header: Accept-Encoding: deflate, gzip, br, zstd 15:47:55.754109 http.c:804 => Send header: Content-Type: application/x-git-upload-pack-request 15:47:55.754112 http.c:804 => Send header: Accept: application/x-git-upload-pack-result 15:47:55.754115 http.c:804 => Send header: Accept-Language: en-ZA, en;q=0.9, ;q=0.8 15:47:55.754120 http.c:804 => Send header: Git-Protocol: version=2 15:47:55.754123 http.c:804 => Send header: Content-Length: 364 15:47:55.754127 http.c:804 => Send header: 15:47:56.080410 http.c:792 <= Recv header, 0000000013 bytes (0x0000000d) 15:47:56.080432 http.c:804 <= Recv header: HTTP/2 200 15:47:56.080439 http.c:792 <= Recv header, 0000000026 bytes (0x0000001a) 15:47:56.080444 http.c:804 <= Recv header: server: GitHub-Babel/3.0 15:47:56.080448 http.c:792 <= Recv header, 0000000052 bytes (0x00000034) 15:47:56.080452 http.c:804 <= Recv header: content-type: application/x-git-upload-pack-result 15:47:56.080456 http.c:792 <= Recv header, 0000000054 bytes (0x00000036) 15:47:56.080460 http.c:804 <= Recv header: content-security-policy: default-src 'none'; sandbox 15:47:56.080464 http.c:792 <= Recv header, 0000000040 bytes (0x00000028) 15:47:56.080467 http.c:804 <= Recv header: expires: Fri, 01 Jan 1980 00:00:00 GMT 15:47:56.080471 http.c:792 <= Recv header, 0000000018 bytes (0x00000012) 15:47:56.080475 http.c:804 <= Recv header: pragma: no-cache 15:47:56.080479 http.c:792 <= Recv header, 0000000053 bytes (0x00000035) 15:47:56.080482 http.c:804 <= Recv header: cache-control: no-cache, max-age=0, must-revalidate 15:47:56.080485 http.c:792 <= Recv header, 0000000023 bytes (0x00000017) 15:47:56.080490 http.c:804 <= Recv header: vary: Accept-Encoding 15:47:56.080494 http.c:792 <= Recv header, 0000000037 bytes (0x00000025) 15:47:56.080498 http.c:804 <= Recv header: date: Tue, 25 Jun 2024 13:47:54 GMT 15:47:56.080502 http.c:792 <= Recv header, 0000000023 bytes (0x00000017) 15:47:56.080507 http.c:804 <= Recv header: x-frame-options: DENY 15:47:56.080512 http.c:792 <= Recv header, 0000000057 bytes (0x00000039) 15:47:56.080516 http.c:804 <= Recv header: x-github-request-id: 98D8:255632:5AA6D5:7A218F:667ACA8B 15:47:56.080520 http.c:792 <= Recv header, 0000000002 bytes (0x00000002) 15:47:56.080523 http.c:804 <= Recv header: 15:47:56.080572 pkt-line.c:85 packet: clone< 0479494e7abe5aef71393fba2e184b3a78ea488f HEAD symref-target:refs/heads/master 15:47:56.080592 pkt-line.c:85 packet: clone< 606dd2b629f264aa37a0d76fe23805d61bc6c712 refs/heads/audio/stack_on_psram_v3.3 15:47:56.080602 pkt-line.c:85 packet: clone< c93d0dbcb4b2f46db267bd97a0ac7b62a010d349 refs/heads/customer/11kv_v4.0_xiaomi 15:47:56.080610 pkt-line.c:85 packet: clone< b24a5e78f2165d7bcec20f4bd2f59ddd47bbc79f refs/heads/customer/maintain_v4.0_xiaomi_tsf_issue 15:47:56.080619 pkt-line.c:85 packet: clone< 0479494e7abe5aef71393fba2e184b3a78ea488f refs/heads/master 15:47:56.080627 pkt-line.c:85 packet: clone< bef9896305ca6a2b48507f6ec03ce13bc32d7005 refs/heads/release/v2.0 15:47:56.080635 pkt-line.c:85 packet: clone< c70a613127ac2dd597577127f659843a75f3e21e refs/heads/release/v2.1 15:47:56.080643 pkt-line.c:85 packet: clone< f3704f027e70a370bed3852f39c2ce48b9e8c7dc refs/heads/release/v3.0 15:47:56.080651 pkt-line.c:85 packet: clone< 2060ee9a548a0975bd7c5d690230f6d332f5054f refs/heads/release/v3.1 15:47:56.080658 pkt-line.c:85 packet: clone< 110d230e363afb664b1520f92dc952bb40802dd9 refs/heads/release/v3.2 15:47:56.080665 pkt-line.c:85 packet: clone< cc5440f6a2df826dc9a9ded571ad20b5c30a4b89 refs/heads/release/v3.3 15:47:56.080672 pkt-line.c:85 packet: clone< be7df8bce9c12c020d772ef1e71a773025f5177a refs/heads/release/v4.0 15:47:56.080680 pkt-line.c:85 packet: clone< 349385cb645432b17a4f2148bdd0e863136324d1 refs/heads/release/v4.1 15:47:56.080687 pkt-line.c:85 packet: clone< 5f8de192faeed79f8eacf6f1febaf1401ec8e24f refs/heads/release/v4.2 15:47:56.081075 pkt-line.c:85 packet: clone< ae221c7b7a4bcea57a64cccaec360de3a109baed refs/heads/release/v4.3 15:47:56.081090 pkt-line.c:85 packet: clone< c0e0af03d153d2c157d1d420831ab33d48888768 refs/heads/release/v4.4 15:47:56.081097 pkt-line.c:85 packet: clone< b7382c60f982ba43379d4f467068e7bbec18af94 refs/heads/release/v5.0 15:47:56.081104 pkt-line.c:85 packet: clone< 97de085b35360511bb506ee43c45011debfc5fb2 refs/heads/release/v5.1 15:47:56.081111 pkt-line.c:85 packet: clone< 018409d99b238435e42567dd6672c2ca32563bfc refs/heads/release/v5.2 15:47:56.081117 pkt-line.c:85 packet: clone< ae876915ec7aa0f96edc826e413baa45ac3c2a64 refs/heads/release/v5.3 15:47:56.081125 pkt-line.c:85 packet: clone< 4fbbc6c9db684d91b679fee036683feb9d7f7790 refs/tags/v0.9 peeled:d2c938d88139f7114142998ae90383ef4cceb610 15:47:56.081142 pkt-line.c:85 packet: clone< 1469e91cade1e09ae7d237c89ba2de124792f86e refs/tags/v1.0 peeled:65f57e5da7287576d98f657ea45163411bc3a564 15:47:56.081147 pkt-line.c:85 packet: clone< ecd8a3531eb1a1c881bfc9289d87bc0fc1c462e3 refs/tags/v2.0 peeled:024ef51d1ae541172f5736b25df8692932382539 15:47:56.081150 pkt-line.c:85 packet: clone< 5d63570b74ee300eb3830bef8a3aab0cbb6bdb0b refs/tags/v2.0-rc1 peeled:6bc9cd39e9a16d5e5de7ae8ce93a4d7933ceb444 15:47:56.081155 pkt-line.c:85 packet: clone< 877b407c8c0fd49214bc17795536bd3d986e46b6 refs/tags/v2.0-rc2 15:47:56.081159 pkt-line.c:85 packet: clone< ab2fbc1a0a7a11e04ab65fb9db3a8e0b0b29be74 refs/tags/v2.1 peeled:27574a31e7c41f6e22e10e9b9d7713c6d49f795d 15:47:56.081163 pkt-line.c:85 packet: clone< 45a07899c342f087bbcd04cb25cad21574068127 refs/tags/v2.1-rc1 peeled:3bd3640d60a0aff719470dd870d8ef3527ee9953 15:47:56.081168 pkt-line.c:85 packet: clone< 3599639a50868da71cef9c12227a80fcea1a7bec refs/tags/v2.1.1 peeled:8bca703467be0d5e43e2a3dce2ca7727ca826474 15:47:56.081172 pkt-line.c:85 packet: clone< cdce129d325aa4d1d504e8da2118f29968fafbeb refs/tags/v3.0 peeled:94ec3c8e53e7f48133f17ae6c6e905fa5a856fd2 15:47:56.083030 pkt-line.c:85 packet: clone< c55c0dee2f9177a9aaaa6558a9b6c9260e7d8cb6 refs/tags/v3.0-dev peeled:3f8f618df5157906e2ebe65f94b003e3ac1b82a7 15:47:56.083044 pkt-line.c:85 packet: clone< 9daf4c79f1e0acafef78d91554185c8ba4c93849 refs/tags/v3.0-rc1 peeled:043ef32651fada9f66362949deecfe101c636e6c 15:47:56.083053 pkt-line.c:85 packet: clone< fc60a31a66452c9c42d9859f60e286bfb94a97c7 refs/tags/v3.0.1 peeled:c2b39f4a5f4234d3276bec40d42132589739d655 15:47:56.083061 pkt-line.c:85 packet: clone< b59f258e1f677a00772b4455cbf94539cfabc803 refs/tags/v3.0.1-rc peeled:c2b39f4a5f4234d3276bec40d42132589739d655 15:47:56.083068 pkt-line.c:85 packet: clone< ef45cfa25c7bb0a92dd17578c9bfdda1315eebd5 refs/tags/v3.0.2 peeled:8d3d3fdd4ae1a94daf599545c26848495b2dfcf1 15:47:56.083076 pkt-line.c:85 packet: clone< 054e82b4b32d231065be5af2f97f94148152fe6b refs/tags/v3.0.3 15:47:56.083084 pkt-line.c:85 packet: clone< 054e82b4b32d231065be5af2f97f94148152fe6b refs/tags/v3.0.3-rc 15:47:56.083094 pkt-line.c:85 packet: clone< 04061cb4d8b5e23e843c7af28b3c088519c16e29 refs/tags/v3.0.4 peeled:405b1986c2632cd6f74cdfe80787ccfc97963f37 15:47:56.083102 pkt-line.c:85 packet: clone< d915ef4e0e16dc2ccb896bff36b00a8bb843bf8f refs/tags/v3.0.4-rc1 peeled:405b1986c2632cd6f74cdfe80787ccfc97963f37 15:47:56.083109 pkt-line.c:85 packet: clone< 10bde96e5df1385ffb9f55b978682971975f09ed refs/tags/v3.0.5 peeled:6313ea00881f7d779c56e72085ca36218bb43cfd 15:47:56.083122 pkt-line.c:85 packet: clone< 6313ea00881f7d779c56e72085ca36218bb43cfd refs/tags/v3.0.5-rc 15:47:56.083126 pkt-line.c:85 packet: clone< 75bec93542c0b327dfc2b73c20ff3f066bb7a1a2 refs/tags/v3.0.6 peeled:bb56d86fde5052bbc06d3c574ea4b83e9405bfe9 15:47:56.083131 pkt-line.c:85 packet: clone< 099ae5a1d903885a5e373f818d846e0f9c108d8d refs/tags/v3.0.6-rc 15:47:56.083136 pkt-line.c:85 packet: clone< b2c104d5ff2221981cd19a108fe9536078b8480f refs/tags/v3.0.7 peeled:7e0ea6b05db8ad5d1a8dc183414ca8cd456ec934 15:47:56.083141 pkt-line.c:85 packet: clone< 7e0ea6b05db8ad5d1a8dc183414ca8cd456ec934 refs/tags/v3.0.7-rc 15:47:56.083146 pkt-line.c:85 packet: clone< 02e747a65825533f66c92c42f29b284b9bd86c35 refs/tags/v3.0.8 peeled:0dcbe15614cb8a849af24a67685eab2cc48bec7b 15:47:56.083151 pkt-line.c:85 packet: clone< 134fde758ccb9e7ef28deccf96bd687321c6f3f5 refs/tags/v3.0.9 peeled:f3704f027e70a370bed3852f39c2ce48b9e8c7dc 15:47:56.083156 pkt-line.c:85 packet: clone< 8658752ea59d0deaabd3302797fdad01515040c4 refs/tags/v3.1 peeled:22da5f6de9ff3657fa7613fc06ad2eca1d1fe14a 15:47:56.083161 pkt-line.c:85 packet: clone< c6a34407de4e09a68aae248b22c3244a40bf72f8 refs/tags/v3.1-beta1 peeled:c1fdd4500114f7321a8ad1b0df43e3bedec68025 15:47:56.083166 pkt-line.c:85 packet: clone< 22489d70214a5b7650ab197ffd6ab73e9c50a772 refs/tags/v3.1-dev 15:47:56.083172 pkt-line.c:85 packet: clone< 9435c8640f767b689c7579275829459b9a6c0971 refs/tags/v3.1-rc1 peeled:53509c7bfde505b6d0aa5ce0cd1ac48bc3743039 15:47:56.083179 pkt-line.c:85 packet: clone< 98acde535908dd835751a4cffe47b6faae56e8dc refs/tags/v3.1-rc2 peeled:22da5f6de9ff3657fa7613fc06ad2eca1d1fe14a 15:47:56.083184 pkt-line.c:85 packet: clone< 4d83cae037051ecff050cd87161643310fac51c6 refs/tags/v3.1.1 peeled:3b92e85b308578c24f14f57371498303c198c7cb 15:47:56.083189 pkt-line.c:85 packet: clone< 4eb20f4d9955a311a8f7ae66b0c77dfa188c53d4 refs/tags/v3.1.1-rc2 15:47:56.083194 pkt-line.c:85 packet: clone< 7b58d83835187af26aef070c29a4e1767f454f67 refs/tags/v3.1.2 peeled:ed1304146bb379c0a8dcf141710b42364feb4734 15:47:56.083199 pkt-line.c:85 packet: clone< cf5dbadf4f25b395887238a7d4d8251c279afa8c refs/tags/v3.1.3 15:47:56.083205 pkt-line.c:85 packet: clone< 1109dd427e057c5703cca2b4e7bef6fa7f789d61 refs/tags/v3.1.4 peeled:c607d8ff68a3af3d2608f2759ca698833d38b50f 15:47:56.083210 pkt-line.c:85 packet: clone< b69725c9446281d1b3c984412f27d3c7ef73febd refs/tags/v3.1.5 peeled:559a9def5ba5573c5c041a3471e2b489e05916a6 15:47:56.083215 pkt-line.c:85 packet: clone< 6c201e33fc0065ed804c5c364ab308e1faaa8c93 refs/tags/v3.1.6 peeled:2c780ab1cc39eb0c92241a6d8bef10c0a1ae532c 15:47:56.083221 pkt-line.c:85 packet: clone< 66fa2a7f60300f7ba669c1be0a49dba28414ea46 refs/tags/v3.1.7 peeled:d8e057b02c6ecf27b12a36a91a39bc506554f1f8 15:47:56.083229 pkt-line.c:85 packet: clone< 2a5947b87b17754f6e86189a0e8e74dcaf15f934 refs/tags/v3.2 peeled:286202caa31b61c2182209f37f8069a0b60fb942 15:47:56.087655 pkt-line.c:85 packet: clone< 5c935bb5087644d3cb82d147d55cd0ee82b3f70e refs/tags/v3.2-beta1 peeled:a4357aed91c8a03384691df91b93a6f455371e54 15:47:56.087687 pkt-line.c:85 packet: clone< 91aa35e8318509298cf1a391e6b2cbda03aad3a3 refs/tags/v3.2-beta3 15:47:56.087693 pkt-line.c:85 packet: clone< e24109bf44c5c2d3b55a3d025d94a12d55a5b8ca refs/tags/v3.2-dev peeled:4b91c82cc447640e5b61407e810f1d6f3eabd233 15:47:56.087697 pkt-line.c:85 packet: clone< 286202caa31b61c2182209f37f8069a0b60fb942 refs/tags/v3.2-rc 15:47:56.087702 pkt-line.c:85 packet: clone< 1cf361c9baf59601a6bc6150ae2955933ef52896 refs/tags/v3.2.1 peeled:fa42f63226ca54e83bca41d4fe809fb0b63b0e84 15:47:56.087709 pkt-line.c:85 packet: clone< dc6afbe880e0350464e8dc420f0cac20f271cc05 refs/tags/v3.2.2 peeled:055943e29346e77c50589c61a8a26101a8b35d7b 15:47:56.087714 pkt-line.c:85 packet: clone< ca1e5e5bc52182a577f1706c8dcbb4d9d7afe310 refs/tags/v3.2.3 15:47:56.087719 pkt-line.c:85 packet: clone< 12ba25a78c4226ec2cf76c48bbc8523f64bd041d refs/tags/v3.2.4 peeled:6a9d14e963bb40a75b03805dc6490d3255d74975 15:47:56.087724 pkt-line.c:85 packet: clone< 5a0a59bc5cfdd1ad296e87796ebacf342134d0d9 refs/tags/v3.2.5 peeled:8e8b76783bd8cb09bfba1d07cad6010f4a1704ec 15:47:56.087730 pkt-line.c:85 packet: clone< c438887e7242ec93dfe88f779107f2eaf6d45364 refs/tags/v3.3 peeled:6ccb4cf5b7d1fdddb8c2492f9cbc926abaf230df 15:47:56.087737 pkt-line.c:85 packet: clone< 17069f47151daf5bee72dcfbd6b75cb6c1d6acb2 refs/tags/v3.3-beta1 peeled:646d36c7287d8e447b5bd76ec11071b739299887 15:47:56.087742 pkt-line.c:85 packet: clone< 6c49f19247cc95d364b54718e4c29b7d345267af refs/tags/v3.3-beta2 15:47:56.087749 pkt-line.c:85 packet: clone< 6b3da6b1882f3b72e904cc90be67e9c4e3f369a9 refs/tags/v3.3-beta3 15:47:56.087757 pkt-line.c:85 packet: clone< 6f3fa8d652b8a5a8e38b9f6a37567035c8952486 refs/tags/v3.3-dev peeled:c18890875e64de59581dc1bfe5fd094b262a7dc4 15:47:56.087763 pkt-line.c:85 packet: clone< 1afcf2f1157c908c85e5441720944eb219464527 refs/tags/v3.3-rc peeled:97e7c14f4e2544ab73aebf372806c17bcdca44bc 15:47:56.087769 pkt-line.c:85 packet: clone< caa247f6fb98ab08b8411a8675371932330afca8 refs/tags/v3.3.1 peeled:143d26aa49df524e10fb8e41a71d12e731b9b71d 15:47:56.087775 pkt-line.c:85 packet: clone< a9cbabc1072df8895cf12fdcdbc4171b083089d2 refs/tags/v3.3.2 peeled:9e70825d1e1cbf7988cf36981774300066580ea7 15:47:56.087780 pkt-line.c:85 packet: clone< 50db5ff275336ab8ec9867609b4c79cc1b90f012 refs/tags/v3.3.3 peeled:95c7b26cdde5aff5663b6e25363bb5ddefda4954 15:47:56.087785 pkt-line.c:85 packet: clone< afb8f9cac45555ab739ba10bb9776864ba815412 refs/tags/v3.3.4 peeled:b64b3752342a23469ada0188d4838a4fb96fe172 15:47:56.087791 pkt-line.c:85 packet: clone< b19104350aa4a7b81fc36946dca2d50bfc496bfb refs/tags/v3.3.5 peeled:03810c4a065a1ecdd24a803b2c9dc4e834c7dab5 15:47:56.087797 pkt-line.c:85 packet: clone< bcde363d2b2880149efbab63f10855fda5e85d3a refs/tags/v3.3.6 peeled:43e439698df761d4bc4680d53ec081b768ed9655 15:47:56.087803 pkt-line.c:85 packet: clone< a4009277a7b33d2af1cc721302cf0dd8a0b23091 refs/tags/v4.0 peeled:463a9d8b7f9af8205222b80707f9bdbba7c530e1 15:47:56.087808 pkt-line.c:85 packet: clone< 50e6a5850acb763dc7f056fcf0279a4a913bef78 refs/tags/v4.0-beta1 peeled:310beae373446ceb9a4ad9b36b5428d7fdf2705f 15:47:56.087815 pkt-line.c:85 packet: clone< 2e888bce3ac6c9d3d3a5a3930ef71a0d9f77a90d refs/tags/v4.0-beta2 peeled:abdf12dc9e288a43783668e93ec5e1db126e06e2 15:47:56.087821 pkt-line.c:85 packet: clone< 55c3a34f112f2bfc5fc3cfd14360807394ebfa51 refs/tags/v4.0-dev peeled:f44dcf4878e6c055947fb1aeff59191284d07152 15:47:56.087825 pkt-line.c:85 packet: clone< d2e19352ab76f4eedc35eaf8078b7f4aa504372f refs/tags/v4.0-rc peeled:463a9d8b7f9af8205222b80707f9bdbba7c530e1 15:47:56.087831 pkt-line.c:85 packet: clone< c2f2691c815d1040796fdddc63fe79af222bfc36 refs/tags/v4.0.1 peeled:4c81978a3e2220674a432a588292a4c860eef27b 15:47:56.087837 pkt-line.c:85 packet: clone< 7143c3f54b9ffaa2a5f2dd113a7c8ebdd78644fe refs/tags/v4.0.2 peeled:e5f754b26cb2e77ba1ad0423b83536788c14cfc5 15:47:56.087842 pkt-line.c:85 packet: clone< e4acc0e623bd2282b1f4ebeacd91705cc32d01a1 refs/tags/v4.0.3 peeled:03fc307e21ac0dc5aed2ba95dbebe409eb9cb750 15:47:56.087848 pkt-line.c:85 packet: clone< 07a62c2a7df992956fb701b409046a5bec79ac56 refs/tags/v4.0.4 peeled:566231f33befe4a5e10c04a82ccc30f9f15cc7b3 15:47:56.087853 pkt-line.c:85 packet: clone< 37fb67a7bf63a122eaf78f8b5728fd5c3c8c0ade refs/tags/v4.1 peeled:5ef1b390026270503634ac3ec9f1ec2e364e23b2 15:47:56.087858 pkt-line.c:85 packet: clone< 00664b9f05641e272825c08780b0672afd8d087d refs/tags/v4.1-beta1 peeled:f70dcd9ab5cadbe829fac3a40f9adaf01f18db79 15:47:56.087863 pkt-line.c:85 packet: clone< eafe07c45865394e338cc4c7c59ed94e2362e03d refs/tags/v4.1-beta2 peeled:c5cb44d8135a5ec6678259e30468632bc2442288 15:47:56.087871 pkt-line.c:85 packet: clone< f2cedd78bce8cc0a7003bf9dc999b6d461c83ad5 refs/tags/v4.1-dev peeled:70794a07760bc498753595f34c4bd945abd3a45a 15:47:56.087876 pkt-line.c:85 packet: clone< 041e6df48657c231a72f1f0cd2da19a36c2cf5f6 refs/tags/v4.1-rc peeled:b3b7fcf51c91e160b314e15ba54cc671e6f5b37e 15:47:56.087881 pkt-line.c:85 packet: clone< 0850692d0b678cfaca4935005bbbac35597ace59 refs/tags/v4.1.1 peeled:4ebe0d8a2f0fabf577ce03ab9dec976dd3ce3198 15:47:56.087887 pkt-line.c:85 packet: clone< 751d83c329fd5b696725fa1a72a0b8c6d9395f1e refs/tags/v4.1.2 peeled:c198f34f4846213bf3d97d263940f67fc7824387 15:47:56.087893 pkt-line.c:85 packet: clone< 6e1a3904c3e9ef97ea1430f513f45c9d67232825 refs/tags/v4.1.3 peeled:de9348802c791bd10d394ea7092b46af663e82ce 15:47:56.087898 pkt-line.c:85 packet: clone< badb08ad817945033357e427d50c4fbcffd3f7df refs/tags/v4.1.4 peeled:9173ec9d3034c98b558c3e4a10faf8c79d7967e5 15:47:56.088760 pkt-line.c:85 packet: clone< f37a62d968059e4121764a3dfa8a581e7c924de2 refs/tags/v4.2 peeled:c40f2590bf759ff60ef122afa79b4ec04e7633d2 15:47:56.088774 pkt-line.c:85 packet: clone< f9bce3e533dfafc0940a0e851cb629add6ed5453 refs/tags/v4.2-beta1 peeled:5f56329f004a2f4045cc5ac56a4582beabf053e9 15:47:56.088779 pkt-line.c:85 packet: clone< ef8baff8e9f44d62684e44a6f5921b5994904226 refs/tags/v4.2-dev peeled:ee899cb2aac50349bb83524910f4f34920579386 15:47:56.088786 pkt-line.c:85 packet: clone< f84c792446e79fd4a9deefa643430cd0d6054861 refs/tags/v4.2-rc peeled:9c239b9f77bf329af016e3179ade0f4695789184 15:47:56.088796 pkt-line.c:85 packet: clone< a4ab5b6760fb79dce8de841cee20ec04b351ceaf refs/tags/v4.2.1 peeled:21ecef5c56e01d3cccf0648c869e3fa9248bf3d4 15:47:56.088801 pkt-line.c:85 packet: clone< 2fe0a4f062b70fe64bbba169e5eb9142534f26b1 refs/tags/v4.2.2 peeled:7ab8f793ca5b026f37ae812bcc103e3aa698d164 15:47:56.088806 pkt-line.c:85 packet: clone< e37747adaf34d5c1d18b8358e00b8317420c98ea refs/tags/v4.2.3 peeled:bb29e93ddffee7cde82a7ebe92d4ed965e3aa4fe 15:47:56.088811 pkt-line.c:85 packet: clone< 893f7c478bfff715a25be79dce73cc673b54052f refs/tags/v4.2.4 peeled:f5e484fc79e38e668768735b4b63dd976cb4266b 15:47:56.088816 pkt-line.c:85 packet: clone< 2f469e67e21aba56949f02779adefdc6e49347d2 refs/tags/v4.2.5 peeled:d1503315ded139923a1bdd9b280f320c58f90aac 15:47:56.088822 pkt-line.c:85 packet: clone< 3750d7bdf395f50c8ee73a8e47322c4dbc676781 refs/tags/v4.3 peeled:c9646ff0beffc86d2c6d1bfbad34da16e328e0e3 15:47:56.088828 pkt-line.c:85 packet: clone< 32ab67851dbe4fb7ea976d15afaff1441ce7f687 refs/tags/v4.3-beta1 peeled:52f1f68dc7f647def4bd3ff14bf145f87fe99995 15:47:56.088833 pkt-line.c:85 packet: clone< ade4371bb90f71afc883d6d458ef4f0a0c0ce734 refs/tags/v4.3-beta2 peeled:3b9af23290b53323548e939bdd43f7486e2de6f3 15:47:56.088840 pkt-line.c:85 packet: clone< da4e254550e1a4230297113b47e336c428a39600 refs/tags/v4.3-beta3 peeled:e9cf9e2978d0187b0f83a9978391217e39946517 15:47:56.088846 pkt-line.c:85 packet: clone< 4b2cdd32f114a9813381dfb47149fe7f42060d91 refs/tags/v4.3-dev peeled:e783f148f0b5c345b3d7b5ba9e13bf7a5086e40e 15:47:56.088854 pkt-line.c:85 packet: clone< 97031b9448ac1de23dfda04a1b0ae9a599494992 refs/tags/v4.3-rc peeled:a560a506f2bd044b9533831e6a23a8f5f1795f07 15:47:56.088859 pkt-line.c:85 packet: clone< 267b0d812ae0157da84e32caffd2f771ba027889 refs/tags/v4.3.1 peeled:2e74914051d14ec2290fc751a8486fb51d73a31e 15:47:56.088865 pkt-line.c:85 packet: clone< 19956442987e7853eb4ec1606044c11ee7c48141 refs/tags/v4.3.2 peeled:8bf14a9238329954c7c5062eeeda569529aedf75 15:47:56.088870 pkt-line.c:85 packet: clone< 7bb414c408c4f2b928422a15bb99eb0db1d9a98c refs/tags/v4.3.3 peeled:16d99713021bcabbbe4370440f83679d39787169 15:47:56.088877 pkt-line.c:85 packet: clone< 72e21df3517484a821dccf685234e78359ce67c1 refs/tags/v4.3.4 peeled:63091bdf8d118f0e0c4e4424ee7a90f3d58ac6e5 15:47:56.088883 pkt-line.c:85 packet: clone< b28e3b2d4b7b98a148b60d4c6341f1f6dbbc9f3f refs/tags/v4.3.5 peeled:6d04316cbe4dc35ea7e4885e9821bd9958ac996d 15:47:56.088888 pkt-line.c:85 packet: clone< a0dcbed1438a2e9a337234a97cde00352ff0cf71 refs/tags/v4.3.6 peeled:5dc5a442a291f0e6180244a55095a4a4ca1776b5 15:47:56.088894 pkt-line.c:85 packet: clone< 2839f9a76bdaa3f0a5e169ab894ef894f4429785 refs/tags/v4.3.7 peeled:1bdf0a866907ccfcb6e6c1f82470d6fbebf8f37c 15:47:56.088900 pkt-line.c:85 packet: clone< 136475a9d9a0e2c6601ea94294e161a3ddb05810 refs/tags/v4.4 peeled:8153bfe4125e6a608abccf1561fd10285016c90a 15:47:56.088912 pkt-line.c:85 packet: clone< e2bb0f822370d1e17a1608ad0e1a2bf5091571b1 refs/tags/v4.4-beta1 peeled:9b46f4e086b656fe3307c3ff92e8c476ccd2d1c6 15:47:56.120571 pkt-line.c:85 packet: clone< 00816d833d3d604d52ea3d69977dd76ff31f110e refs/tags/v4.4-dev peeled:c8315e01107c10898947a817d5cf763cdd3f5a4f 15:47:56.120599 pkt-line.c:85 packet: clone< e5f584023d55db4dfd9441830e5dcfa339021dc8 refs/tags/v4.4-rc1 peeled:f3e0c8bc41098f79baf2cf9f45dcbb6c1d41b3fe 15:47:56.120605 pkt-line.c:85 packet: clone< 0e4bf973f4b769af566f1840aace60e73f2ddbb4 refs/tags/v4.4.1 peeled:1329b19fe494500aeb79d19b27cfd99b40c37aec 15:47:56.120610 pkt-line.c:85 packet: clone< 8d6b22c9dc34fc69474d3ea2669720a02584e376 refs/tags/v4.4.2 peeled:1b16ef6cfc2479a08136782f9dc57effefa86f66 15:47:56.120615 pkt-line.c:85 packet: clone< 7edc3e878fc42aecf9606c584ff1122a0ae2059d refs/tags/v4.4.3 peeled:6407ecb3f8d2cc07c4c230e7e64f2046af5c86f7 15:47:56.120622 pkt-line.c:85 packet: clone< 13b7706c05ba404ab4b12ccc4f9232029c467baf refs/tags/v4.4.4 peeled:e8bdaf91986a41678adc6be13888fc037b1acb68 15:47:56.120630 pkt-line.c:85 packet: clone< 29bb1d7d4328c41921df1368a7873c209b0f0893 refs/tags/v4.4.5 peeled:ac5d805d0eda75442dd17cfea5baaca9748f8215 15:47:56.120636 pkt-line.c:85 packet: clone< d79f680d473edcdff87cfa27c646dc3ee661dfb3 refs/tags/v4.4.6 peeled:357290093430e41e7e3338227a61ef5162f2deed 15:47:56.120641 pkt-line.c:85 packet: clone< 0ae6ac430a6b9bce7f2e3ac7e2de3a8654d6b442 refs/tags/v4.4.7 peeled:38eeba213aa695aabfd6d89aa9f5078dbe5a94c3 15:47:56.120656 pkt-line.c:85 packet: clone< 340dbc41c0a3eb92a90c092fbf7e7ef8c3487602 refs/tags/v5.0 peeled:7f5ecbe533b2666df6b10658a023b5f637320696 15:47:56.120662 pkt-line.c:85 packet: clone< 3d8a228aecbe79f2cc394db4f9e5c23eae313905 refs/tags/v5.0-beta1 peeled:b66be87f886fdc1fcc97a1013a84fc59be1e5c7b 15:47:56.120667 pkt-line.c:85 packet: clone< 3ee0276f14a9e24949925c3241a5d81c8ac4e99b refs/tags/v5.0-dev peeled:fdfa260b9197a0ef57e5d1d741cbd2e767d86128 15:47:56.120673 pkt-line.c:85 packet: clone< 86b0d20a09266be888ff2a94d536c413e82e39d6 refs/tags/v5.0-rc1 peeled:3f2f35bd5e1c3bab12def58de48c83fd8e93e431 15:47:56.120678 pkt-line.c:85 packet: clone< 9a073fcadf8a5ac4fd237225da8ec583bdfc19dc refs/tags/v5.0.1 peeled:a4afa44435ef4488d018399e1de50ad2ee964be8 15:47:56.120684 pkt-line.c:85 packet: clone< 602d971d2facb2d9fa0e67da7589e9f4713d8960 refs/tags/v5.0.2 peeled:5181de8ac5ec5e18f04f634da8ce173b7ef5ab73 15:47:56.120690 pkt-line.c:85 packet: clone< 9f617355b8b766b751a76c0791b621020602a535 refs/tags/v5.0.3 peeled:e004907bd53b68e6db2e29ae335d8b38cbb39472 15:47:56.120696 pkt-line.c:85 packet: clone< 4b4324230e89a8d46af1096637a85a141c60a810 refs/tags/v5.0.4 peeled:8fbf4ba6058bcf736317d8a7aa75d0578563c38b 15:47:56.120702 pkt-line.c:85 packet: clone< 2f61f6b1ede0b88bbb672a2b7a4575c941e73017 refs/tags/v5.0.5 peeled:03d7a3807bee18c7b9ffa0638af83b92fc23895f 15:47:56.120707 pkt-line.c:85 packet: clone< ad698f6357327d0f74eed0d9f421e51ec0fd9cf5 refs/tags/v5.0.6 peeled:bcca689866db3dfda47f77670bf8df2a7ec94721 15:47:56.120719 pkt-line.c:85 packet: clone< 9040153dae72e140a8efb29629d9ad29d33a4d3b refs/tags/v5.1 peeled:cbce221e88d52665523093b2b6dd0ebe3f1243f1 15:47:56.120724 pkt-line.c:85 packet: clone< 25ec4b94fe77c5e2da9d06007ada11d6b8561f65 refs/tags/v5.1-beta1 peeled:a6b1ebce31444e279ef6a0715289a9672ecc6db4 15:47:56.120729 pkt-line.c:85 packet: clone< 0a4240494f284cab174de855fcd6c60dc024adda refs/tags/v5.1-dev peeled:012fafb82781f2720f2c636ed3b0ebd0db02cd9d 15:47:56.120734 pkt-line.c:85 packet: clone< 940ca3252f1ab565a10023a0247ef1455a57c1ed refs/tags/v5.1-rc1 peeled:56677dabe86c7f422d153bb30b779b51590c5abb 15:47:56.120739 pkt-line.c:85 packet: clone< e28632506c5b643aaa9a9124ee81e957e8d78099 refs/tags/v5.1-rc2 peeled:4bc762621db30f253742bd3c439f80500fda0fb0 15:47:56.120744 pkt-line.c:85 packet: clone< 29a7e46a3a3d3c5edecdcafe560b2aaa5bda9100 refs/tags/v5.1.1 peeled:e088c3766ba440e72268b458a68f27b6e7d63986 15:47:56.127334 http.c:845 == Info: Connection #0 to host github.com left intact 15:47:56.127345 pkt-line.c:85 packet: clone< 84b9d308335c7b13e154aba51080fa367762d6de refs/tags/v5.1.2 peeled:482a8fb2d78e3b58eb21b26da8a5bedf90623213 15:47:56.127358 pkt-line.c:85 packet: git> 0002 15:47:56.127364 pkt-line.c:85 packet: clone< 3b8bf89fafa4295b484f80b26b5e279e877ac054 refs/tags/v5.1.3 peeled:e7771c75bd1dbbfb7b3c5381be7e063b197c9734 15:47:56.127370 pkt-line.c:85 packet: clone< f8345d88258ff767942b89e93821f977ef2da268 refs/tags/v5.1.4 peeled:d7b0a45ddbddbac53afb4fc28168f9f9259dbb79 15:47:56.127376 pkt-line.c:85 packet: clone< 0f55be42394a6e4e901658d0eae70a353588c23a refs/tags/v5.2 peeled:11eaf41b37267ad7709c0899c284e3683d2f0b5e 15:47:56.127393 pkt-line.c:85 packet: clone< 9690cd19a2f03de5773293c28d701508de061e4e refs/tags/v5.2-beta1 peeled:57bbfd423a1e9533d371a5e0e1e6bcec25bae6fc 15:47:56.127399 pkt-line.c:85 packet: clone< af40f6e4b473e6d07135b93f126ea97236f90bcc refs/tags/v5.2-beta2 peeled:b4a612345be8fa70be8321a6a491baf813a74c4d 15:47:56.127404 pkt-line.c:85 packet: clone< a62f09c743a7299cf83f3c524bb6590fad802eea refs/tags/v5.2-dev peeled:f8d2c0894cf3c12dc231dafebf75d3f1002b312c 15:47:56.127411 pkt-line.c:85 packet: clone< 7a421828d13477ced6230c467c162b2a78f4cc74 refs/tags/v5.2-rc1 peeled:11eaf41b37267ad7709c0899c284e3683d2f0b5e 15:47:56.127416 pkt-line.c:85 packet: clone< b0ec84ebdaf88f43ba5404979111762a03b2ee22 refs/tags/v5.2.1 peeled:a322e6bdad4b6675d4597fb2722eea2851ba88cb 15:47:56.127421 pkt-line.c:85 packet: clone< 88e8f54069dd1c6ecdd1681a4e428b2d05209672 refs/tags/v5.2.2 peeled:3b8741b172dc951e18509698dee938304bcf1523 15:47:56.127426 pkt-line.c:85 packet: clone< df8784fd7640f4edd8036222cbba2abeb54d4bb7 refs/tags/v5.3-beta1 peeled:ea010f84ef878dda07146244e166930738c1c103 15:47:56.127432 pkt-line.c:85 packet: clone< eaaf803b9e6dcbc54f68fce0f7a79ac50d780137 refs/tags/v5.3-beta2 peeled:ae876915ec7aa0f96edc826e413baa45ac3c2a64 15:47:56.127437 pkt-line.c:85 packet: clone< 419af6183671a7a51051806dfa2d75944e580e07 refs/tags/v5.3-dev peeled:8171b22c40f39a75cd0db62165e7ef017f78c572 15:47:56.127443 pkt-line.c:85 packet: clone< b12dcf240fb9b64b61f14c235a87f04e03c55961 refs/tags/v5.4-dev peeled:0436d4981593e349f82c49007c79f69be8c3cec7 15:47:56.127452 pkt-line.c:85 packet: clone< 0000 15:47:56.127460 pkt-line.c:85 packet: clone< 0002 15:47:56.129339 pkt-line.c:85 packet: clone> command=fetch 15:47:56.129347 pkt-line.c:85 packet: clone> agent=git/2.43.0 15:47:56.129351 pkt-line.c:85 packet: clone> object-format=sha1 15:47:56.129354 pkt-line.c:85 packet: clone> 0001 15:47:56.129357 pkt-line.c:85 packet: clone> thin-pack 15:47:56.129360 pkt-line.c:85 packet: clone> include-tag 15:47:56.129362 pkt-line.c:85 packet: clone> ofs-delta 15:47:56.129366 pkt-line.c:85 packet: clone> deepen 1 15:47:56.129370 pkt-line.c:85 packet: clone> want 88e8f54069dd1c6ecdd1681a4e428b2d05209672 15:47:56.129373 pkt-line.c:85 packet: clone> done 15:47:56.129376 pkt-line.c:85 packet: clone> 0000 15:47:56.129411 pkt-line.c:85 packet: git< command=fetch 15:47:56.129422 pkt-line.c:85 packet: git< agent=git/2.43.0 15:47:56.129428 pkt-line.c:85 packet: git< object-format=sha1 15:47:56.129435 pkt-line.c:85 packet: git< 0001 15:47:56.129440 pkt-line.c:85 packet: git< thin-pack 15:47:56.129445 pkt-line.c:85 packet: git< include-tag 15:47:56.129450 pkt-line.c:85 packet: git< ofs-delta 15:47:56.129456 pkt-line.c:85 packet: git< deepen 1 15:47:56.129461 pkt-line.c:85 packet: git< want 88e8f54069dd1c6ecdd1681a4e428b2d05209672 15:47:56.129465 pkt-line.c:85 packet: git< done 15:47:56.129470 pkt-line.c:85 packet: git< 0000 15:47:56.129532 http.c:845 == Info: Couldn't find host github.com in the .netrc file; using defaults 15:47:56.129543 http.c:845 == Info: Found bundle for host: 0x5ba820c1b4f0 [can multiplex] 15:47:56.129549 http.c:845 == Info: Re-using existing connection with host github.com 15:47:56.129585 http.c:845 == Info: [HTTP/2] [5] OPENED stream for https://github.com/espressif/esp-idf.git/git-upload-pack 15:47:56.129591 http.c:845 == Info: [HTTP/2] [5] [:method: POST] 15:47:56.129596 http.c:845 == Info: [HTTP/2] [5] [:scheme: https] 15:47:56.129600 http.c:845 == Info: [HTTP/2] [5] [:authority: github.com] 15:47:56.129604 http.c:845 == Info: [HTTP/2] [5] [:path: /espressif/esp-idf.git/git-upload-pack] 15:47:56.129608 http.c:845 == Info: [HTTP/2] [5] [user-agent: git/2.43.0] 15:47:56.129612 http.c:845 == Info: [HTTP/2] [5] [accept-encoding: deflate, gzip, br, zstd] 15:47:56.129616 http.c:845 == Info: [HTTP/2] [5] [content-type: application/x-git-upload-pack-request] 15:47:56.129621 http.c:845 == Info: [HTTP/2] [5] [accept: application/x-git-upload-pack-result] 15:47:56.129624 http.c:845 == Info: [HTTP/2] [5] [accept-language: en-ZA, en;q=0.9, ;q=0.8] 15:47:56.129629 http.c:845 == Info: [HTTP/2] [5] [git-protocol: version=2] 15:47:56.129633 http.c:845 == Info: [HTTP/2] [5] [content-length: 179] 15:47:56.129678 http.c:792 => Send header, 0000000326 bytes (0x00000146) 15:47:56.129685 http.c:804 => Send header: POST /espressif/esp-idf.git/git-upload-pack HTTP/2 15:47:56.129689 http.c:804 => Send header: Host: github.com 15:47:56.129694 http.c:804 => Send header: User-Agent: git/2.43.0 15:47:56.129697 http.c:804 => Send header: Accept-Encoding: deflate, gzip, br, zstd 15:47:56.129701 http.c:804 => Send header: Content-Type: application/x-git-upload-pack-request 15:47:56.129704 http.c:804 => Send header: Accept: application/x-git-upload-pack-result 15:47:56.129708 http.c:804 => Send header: Accept-Language: en-ZA, en;q=0.9, ;q=0.8 15:47:56.129712 http.c:804 => Send header: Git-Protocol: version=2 15:47:56.129716 http.c:804 => Send header: Content-Length: 179 15:47:56.129718 http.c:804 => Send header: 15:47:56.501807 http.c:792 <= Recv header, 0000000013 bytes (0x0000000d) 15:47:56.501822 http.c:804 <= Recv header: HTTP/2 200 15:47:56.501829 http.c:792 <= Recv header, 0000000026 bytes (0x0000001a) 15:47:56.501833 http.c:804 <= Recv header: server: GitHub-Babel/3.0 15:47:56.501839 http.c:792 <= Recv header, 0000000052 bytes (0x00000034) 15:47:56.501842 http.c:804 <= Recv header: content-type: application/x-git-upload-pack-result 15:47:56.501846 http.c:792 <= Recv header, 0000000054 bytes (0x00000036) 15:47:56.501850 http.c:804 <= Recv header: content-security-policy: default-src 'none'; sandbox 15:47:56.501853 http.c:792 <= Recv header, 0000000040 bytes (0x00000028) 15:47:56.501857 http.c:804 <= Recv header: expires: Fri, 01 Jan 1980 00:00:00 GMT 15:47:56.501861 http.c:792 <= Recv header, 0000000018 bytes (0x00000012) 15:47:56.501865 http.c:804 <= Recv header: pragma: no-cache 15:47:56.501868 http.c:792 <= Recv header, 0000000053 bytes (0x00000035) 15:47:56.501872 http.c:804 <= Recv header: cache-control: no-cache, max-age=0, must-revalidate 15:47:56.501877 http.c:792 <= Recv header, 0000000023 bytes (0x00000017) 15:47:56.501880 http.c:804 <= Recv header: vary: Accept-Encoding 15:47:56.501884 http.c:792 <= Recv header, 0000000037 bytes (0x00000025) 15:47:56.501887 http.c:804 <= Recv header: date: Tue, 25 Jun 2024 13:47:55 GMT 15:47:56.501891 http.c:792 <= Recv header, 0000000023 bytes (0x00000017) 15:47:56.501895 http.c:804 <= Recv header: x-frame-options: DENY 15:47:56.501899 http.c:792 <= Recv header, 0000000057 bytes (0x00000039) 15:47:56.501902 http.c:804 <= Recv header: x-github-request-id: 98D8:255632:5AA6EA:7A21A8:667ACA8C 15:47:56.501907 http.c:792 <= Recv header, 0000000002 bytes (0x00000002) 15:47:56.501911 http.c:804 <= Recv header: 15:47:56.501937 pkt-line.c:85 packet: clone< shallow-info 15:47:56.501960 pkt-line.c:85 packet: clone< shallow 3b8741b172dc951e18509698dee938304bcf1523 15:47:56.501966 pkt-line.c:85 packet: clone< 0001 15:47:56.502066 pkt-line.c:85 packet: clone< packfile 15:47:56.502166 run-command.c:659 trace: run_command: git --shallow-file /home/gavin/esp-idf/.git/shallow.lock index-pack --stdin -v --fix-thin '--keep=fetch-pack 10034 on gavin-ubuntu' 15:47:56.502380 pkt-line.c:85 packet: sideband< \2Enumerating objects: 14951, done. remote: Enumerating objects: 14951, done. 15:47:56.502417 pkt-line.c:85 packet: sideband< \2Counting objects: 0% (1/14951)\15 15:47:56.502424 pkt-line.c:85 packet: sideband< \2Counting objects: 1% (150/14951)\15 15:47:56.502430 pkt-line.c:85 packet: sideband< \2Counting objects: 2% (300/14951)\15 15:47:56.502436 pkt-line.c:85 packet: sideband< \2Counting objects: 3% (449/14951)\15 15:47:56.502442 pkt-line.c:85 packet: sideband< \2Counting objects: 4% (599/14951)\15 15:47:56.502449 pkt-line.c:85 packet: sideband< \2Counting objects: 5% (748/14951)\15 15:47:56.502457 pkt-line.c:85 packet: sideband< \2Counting objects: 6% (898/14951)\15 15:47:56.502466 pkt-line.c:85 packet: sideband< \2Counting objects: 7% (1047/14951)\15 15:47:56.502472 pkt-line.c:85 packet: sideband< \2Counting objects: 8% (1197/14951)\15 15:47:56.502478 pkt-line.c:85 packet: sideband< \2Counting objects: 9% (1346/14951)\15 15:47:56.502484 pkt-line.c:85 packet: sideband< \2Counting objects: 10% (1496/14951)\15 15:47:56.502491 pkt-line.c:85 packet: sideband< \2Counting objects: 11% (1645/14951)\15 15:47:56.502497 pkt-line.c:85 packet: sideband< \2Counting objects: 12% (1795/14951)\15 15:47:56.502507 pkt-line.c:85 packet: sideband< \2Counting objects: 13% (1944/14951)\15 15:47:56.503596 git.c:463 trace: built-in: git index-pack --stdin -v --fix-thin '--keep=fetch-pack 10034 on gavin-ubuntu' 15:47:56.508349 pkt-line.c:85 packet: sideband< \2Counting objects: 14% (2094/14951)\15 15:47:56.508361 pkt-line.c:85 packet: sideband< \2Counting objects: 15% (2243/14951)\15 15:47:56.508367 pkt-line.c:85 packet: sideband< \2Counting objects: 16% (2393/14951)\15 15:47:56.508373 pkt-line.c:85 packet: sideband< \2Counting objects: 17% (2542/14951)\15 15:47:56.508379 pkt-line.c:85 packet: sideband< \2Counting objects: 18% (2692/14951)\15 15:47:56.508386 pkt-line.c:85 packet: sideband< \2Counting objects: 19% (2841/14951)\15 15:47:56.508393 pkt-line.c:85 packet: sideband< \2Counting objects: 20% (2991/14951)\15 15:47:56.508399 pkt-line.c:85 packet: sideband< \2Counting objects: 21% (3140/14951)\15 15:47:56.508406 pkt-line.c:85 packet: sideband< \2Counting objects: 22% (3290/14951)\15 15:47:56.508415 pkt-line.c:85 packet: sideband< \2Counting objects: 23% (3439/14951)\15 15:47:56.508422 pkt-line.c:85 packet: sideband< \2Counting objects: 24% (3589/14951)\15 15:47:56.508428 pkt-line.c:85 packet: sideband< \2Counting objects: 25% (3738/14951)\15 15:47:56.508435 pkt-line.c:85 packet: sideband< \2Counting objects: 26% (3888/14951)\15 15:47:56.508442 pkt-line.c:85 packet: sideband< \2Counting objects: 27% (4037/14951)\15 15:47:56.508448 pkt-line.c:85 packet: sideband< \2Counting objects: 28% (4187/14951)\15 15:47:56.508454 pkt-line.c:85 packet: sideband< \2Counting objects: 29% (4336/14951)\15 15:47:56.508460 pkt-line.c:85 packet: sideband< \2Counting objects: 30% (4486/14951)\15 15:47:56.508466 pkt-line.c:85 packet: sideband< \2Counting objects: 31% (4635/14951)\15 15:47:56.508472 pkt-line.c:85 packet: sideband< \2Counting objects: 32% (4785/14951)\15 15:47:56.508478 pkt-line.c:85 packet: sideband< \2Counting objects: 33% (4934/14951)\15 15:47:56.508484 pkt-line.c:85 packet: sideband< \2Counting objects: 34% (5084/14951)\15 15:47:56.508490 pkt-line.c:85 packet: sideband< \2Counting objects: 35% (5233/14951)\15 15:47:56.508497 pkt-line.c:85 packet: sideband< \2Counting objects: 36% (5383/14951)\15 15:47:56.508502 pkt-line.c:85 packet: sideband< \2Counting objects: 37% (5532/14951)\15 15:47:56.508508 pkt-line.c:85 packet: sideband< \2Counting objects: 38% (5682/14951)\15 15:47:56.508514 pkt-line.c:85 packet: sideband< \2Counting objects: 39% (5831/14951)\15 15:47:56.508521 pkt-line.c:85 packet: sideband< \2Counting objects: 40% (5981/14951)\15 15:47:56.508529 pkt-line.c:85 packet: sideband< \2Counting objects: 41% (6130/14951)\15 15:47:56.508895 pkt-line.c:85 packet: sideband< \2Counting objects: 42% (6280/14951)\15 15:47:56.508902 pkt-line.c:85 packet: sideband< \2Counting objects: 43% (6429/14951)\15 15:47:56.508907 pkt-line.c:85 packet: sideband< \2Counting objects: 44% (6579/14951)\15 15:47:56.508912 pkt-line.c:85 packet: sideband< \2Counting objects: 45% (6728/14951)\15 15:47:56.508917 pkt-line.c:85 packet: sideband< \2Counting objects: 46% (6878/14951)\15 15:47:56.508923 pkt-line.c:85 packet: sideband< \2Counting objects: 47% (7027/14951)\15 15:47:56.508928 pkt-line.c:85 packet: sideband< \2Counting objects: 48% (7177/14951)\15 15:47:56.508934 pkt-line.c:85 packet: sideband< \2Counting objects: 49% (7326/14951)\15 15:47:56.508940 pkt-line.c:85 packet: sideband< \2Counting objects: 50% (7476/14951)\15 15:47:56.508952 pkt-line.c:85 packet: sideband< \2Counting objects: 51% (7626/14951)\15 15:47:56.508958 pkt-line.c:85 packet: sideband< \2Counting objects: 52% (7775/14951)\15 15:47:56.508962 pkt-line.c:85 packet: sideband< \2Counting objects: 53% (7925/14951)\15 15:47:56.508970 pkt-line.c:85 packet: sideband< \2Counting objects: 54% (8074/14951)\15 15:47:56.508977 pkt-line.c:85 packet: sideband< \2Counting objects: 55% (8224/14951)\15 15:47:56.508985 pkt-line.c:85 packet: sideband< \2Counting objects: 56% (8373/14951)\15 15:47:56.508992 pkt-line.c:85 packet: sideband< \2Counting objects: 57% (8523/14951)\15 15:47:56.508998 pkt-line.c:85 packet: sideband< \2Counting objects: 58% (8672/14951)\15 15:47:56.509004 pkt-line.c:85 packet: sideband< \2Counting objects: 59% (8822/14951)\15 15:47:56.509010 pkt-line.c:85 packet: sideband< \2Counting objects: 60% (8971/14951)\15 15:47:56.509018 pkt-line.c:85 packet: sideband< \2Counting objects: 61% (9121/14951)\15 15:47:56.509023 pkt-line.c:85 packet: sideband< \2Counting objects: 62% (9270/14951)\15 15:47:56.509028 pkt-line.c:85 packet: sideband< \2Counting objects: 63% (9420/14951)\15 15:47:56.509032 pkt-line.c:85 packet: sideband< \2Counting objects: 64% (9569/14951)\15 15:47:56.513489 pkt-line.c:85 packet: sideband< \2Counting objects: 65% (9719/14951)\15 15:47:56.513499 pkt-line.c:85 packet: sideband< \2Counting objects: 66% (9868/14951)\15 15:47:56.513505 pkt-line.c:85 packet: sideband< \2Counting objects: 67% (10018/14951)\15 15:47:56.513511 pkt-line.c:85 packet: sideband< \2Counting objects: 68% (10167/14951)\15 15:47:56.513518 pkt-line.c:85 packet: sideband< \2Counting objects: 69% (10317/14951)\15 15:47:56.513525 pkt-line.c:85 packet: sideband< \2Counting objects: 70% (10466/14951)\15 15:47:56.513531 pkt-line.c:85 packet: sideband< \2Counting objects: 71% (10616/14951)\15 15:47:56.513537 pkt-line.c:85 packet: sideband< \2Counting objects: 72% (10765/14951)\15 15:47:56.513544 pkt-line.c:85 packet: sideband< \2Counting objects: 73% (10915/14951)\15 15:47:56.513551 pkt-line.c:85 packet: sideband< \2Counting objects: 74% (11064/14951)\15 15:47:56.513557 pkt-line.c:85 packet: sideband< \2Counting objects: 75% (11214/14951)\15 15:47:56.513564 pkt-line.c:85 packet: sideband< \2Counting objects: 76% (11363/14951)\15 15:47:56.513570 pkt-line.c:85 packet: sideband< \2Counting objects: 77% (11513/14951)\15 15:47:56.513577 pkt-line.c:85 packet: sideband< \2Counting objects: 78% (11662/14951)\15 15:47:56.513583 pkt-line.c:85 packet: sideband< \2Counting objects: 79% (11812/14951)\15 15:47:56.513590 pkt-line.c:85 packet: sideband< \2Counting objects: 80% (11961/14951)\15 15:47:56.513597 pkt-line.c:85 packet: sideband< \2Counting objects: 81% (12111/14951)\15 15:47:56.513603 pkt-line.c:85 packet: sideband< \2Counting objects: 82% (12260/14951)\15 15:47:56.513609 pkt-line.c:85 packet: sideband< \2Counting objects: 83% (12410/14951)\15 15:47:56.513616 pkt-line.c:85 packet: sideband< \2Counting objects: 84% (12559/14951)\15 15:47:56.513622 pkt-line.c:85 packet: sideband< \2Counting objects: 85% (12709/14951)\15 15:47:56.513629 pkt-line.c:85 packet: sideband< \2Counting objects: 86% (12858/14951)\15 15:47:56.513636 pkt-line.c:85 packet: sideband< \2Counting objects: 87% (13008/14951)\15 15:47:56.513642 pkt-line.c:85 packet: sideband< \2Counting objects: 88% (13157/14951)\15 15:47:56.630976 pkt-line.c:85 packet: sideband< \2Counting objects: 89% (13307/14951)\15 15:47:56.631003 pkt-line.c:85 packet: sideband< \2Counting objects: 90% (13456/14951)\15 15:47:56.631014 pkt-line.c:85 packet: sideband< \2Counting objects: 91% (13606/14951)\15 15:47:56.631020 pkt-line.c:85 packet: sideband< \2Counting objects: 92% (13755/14951)\15 15:47:56.631027 pkt-line.c:85 packet: sideband< \2Counting objects: 93% (13905/14951)\15 15:47:56.631032 pkt-line.c:85 packet: sideband< \2Counting objects: 94% (14054/14951)\15 15:47:56.631039 pkt-line.c:85 packet: sideband< \2Counting objects: 95% (14204/14951)\15 15:47:56.631046 pkt-line.c:85 packet: sideband< \2Counting objects: 96% (14353/14951)\15 15:47:56.631057 pkt-line.c:85 packet: sideband< \2Counting objects: 97% (14503/14951)\15 15:47:56.631063 pkt-line.c:85 packet: sideband< \2Counting objects: 98% (14652/14951)\15 15:47:56.631069 pkt-line.c:85 packet: sideband< \2Counting objects: 99% (14802/14951)\15 15:47:56.631076 pkt-line.c:85 packet: sideband< \2Counting objects: 100% (14951/14951)\15 15:47:56.631082 pkt-line.c:85 packet: sideband< \2Counting objects: 100% (14951/14951), done. remote: Counting objects: 100% (14951/14951), done. 15:47:56.631088 pkt-line.c:85 packet: sideband< \2Compressing objects: 0% (1/11692)\15 15:47:56.631095 pkt-line.c:85 packet: sideband< \2Compressing objects: 1% (117/11692)\15 15:47:56.631101 pkt-line.c:85 packet: sideband< \2Compressing objects: 2% (234/11692)\15 15:47:56.631108 pkt-line.c:85 packet: sideband< \2Compressing objects: 3% (351/11692)\15 15:47:56.631115 pkt-line.c:85 packet: sideband< \2Compressing objects: 4% (468/11692)\15 15:47:56.631123 pkt-line.c:85 packet: sideband< \2Compressing objects: 5% (585/11692)\15 15:47:56.631129 pkt-line.c:85 packet: sideband< \2Compressing objects: 6% (702/11692)\15 15:47:56.631136 pkt-line.c:85 packet: sideband< \2Compressing objects: 7% (819/11692)\15 15:47:56.631142 pkt-line.c:85 packet: sideband< \2Compressing objects: 8% (936/11692)\15 15:47:56.745488 pkt-line.c:85 packet: sideband< \2Compressing objects: 9% (1053/11692)\15 15:47:56.745514 pkt-line.c:85 packet: sideband< \2Compressing objects: 10% (1170/11692)\15 15:47:56.745521 pkt-line.c:85 packet: sideband< \2Compressing objects: 11% (1287/11692)\15 15:47:56.745527 pkt-line.c:85 packet: sideband< \2Compressing objects: 12% (1404/11692)\15 15:47:56.745534 pkt-line.c:85 packet: sideband< \2Compressing objects: 13% (1520/11692)\15 15:47:56.866413 pkt-line.c:85 packet: sideband< \2Compressing objects: 14% (1637/11692)\15 15:47:56.866435 pkt-line.c:85 packet: sideband< \2Compressing objects: 15% (1754/11692)\15 15:47:56.866442 pkt-line.c:85 packet: sideband< \2Compressing objects: 16% (1871/11692)\15 15:47:56.992431 pkt-line.c:85 packet: sideband< \2Compressing objects: 17% (1988/11692)\15 15:47:56.992452 pkt-line.c:85 packet: sideband< \2Compressing objects: 18% (2105/11692)\15 15:47:56.992459 pkt-line.c:85 packet: sideband< \2Compressing objects: 19% (2222/11692)\15 15:47:56.992465 pkt-line.c:85 packet: sideband< \2Compressing objects: 20% (2339/11692)\15 15:47:56.992471 pkt-line.c:85 packet: sideband< \2Compressing objects: 21% (2456/11692)\15 15:47:56.992477 pkt-line.c:85 packet: sideband< \2Compressing objects: 22% (2573/11692)\15 15:47:56.992482 pkt-line.c:85 packet: sideband< \2Compressing objects: 23% (2690/11692)\15 15:47:56.992488 pkt-line.c:85 packet: sideband< \2Compressing objects: 24% (2807/11692)\15 15:47:56.992494 pkt-line.c:85 packet: sideband< \2Compressing objects: 25% (2923/11692)\15 15:47:56.992500 pkt-line.c:85 packet: sideband< \2Compressing objects: 26% (3040/11692)\15 15:47:57.111484 pkt-line.c:85 packet: sideband< \2Compressing objects: 27% (3157/11692)\15 15:47:57.111520 pkt-line.c:85 packet: sideband< \2Compressing objects: 28% (3274/11692)\15 15:47:57.111528 pkt-line.c:85 packet: sideband< \2Compressing objects: 29% (3391/11692)\15 15:47:57.111539 pkt-line.c:85 packet: sideband< \2Compressing objects: 30% (3508/11692)\15 15:47:57.111548 pkt-line.c:85 packet: sideband< \2Compressing objects: 31% (3625/11692)\15 15:47:57.111557 pkt-line.c:85 packet: sideband< \2Compressing objects: 32% (3742/11692)\15 15:47:57.111567 pkt-line.c:85 packet: sideband< \2Compressing objects: 33% (3859/11692)\15 15:47:57.111577 pkt-line.c:85 packet: sideband< \2Compressing objects: 34% (3976/11692)\15 15:47:57.232420 pkt-line.c:85 packet: sideband< \2Compressing objects: 35% (4093/11692)\15 15:47:57.232444 pkt-line.c:85 packet: sideband< \2Compressing objects: 36% (4210/11692)\15 15:47:57.232451 pkt-line.c:85 packet: sideband< \2Compressing objects: 37% (4327/11692)\15 15:47:57.232456 pkt-line.c:85 packet: sideband< \2Compressing objects: 38% (4443/11692)\15 15:47:57.232462 pkt-line.c:85 packet: sideband< \2Compressing objects: 39% (4560/11692)\15 15:47:57.356899 pkt-line.c:85 packet: sideband< \2Compressing objects: 40% (4677/11692)\15 15:47:57.478118 pkt-line.c:85 packet: sideband< \2Compressing objects: 41% (4794/11692)\15 15:47:57.478150 pkt-line.c:85 packet: sideband< \2Compressing objects: 42% (4911/11692)\15 15:47:57.598095 pkt-line.c:85 packet: sideband< \2Compressing objects: 43% (5028/11692)\15 15:47:57.598125 pkt-line.c:85 packet: sideband< \2Compressing objects: 43% (5134/11692)\15 15:47:57.598131 pkt-line.c:85 packet: sideband< \2Compressing objects: 44% (5145/11692)\15 15:47:57.598138 pkt-line.c:85 packet: sideband< \2Compressing objects: 45% (5262/11692)\15 15:47:57.598147 pkt-line.c:85 packet: sideband< \2Compressing objects: 46% (5379/11692)\15 15:47:57.729046 pkt-line.c:85 packet: sideband< \2Compressing objects: 47% (5496/11692)\15 15:47:57.729084 pkt-line.c:85 packet: sideband< \2Compressing objects: 48% (5613/11692)\15 15:47:57.729095 pkt-line.c:85 packet: sideband< \2Compressing objects: 49% (5730/11692)\15 15:47:57.857072 pkt-line.c:85 packet: sideband< \2Compressing objects: 50% (5846/11692)\15 15:47:57.857100 pkt-line.c:85 packet: sideband< \2Compressing objects: 51% (5963/11692)\15 15:47:57.857107 pkt-line.c:85 packet: sideband< \2Compressing objects: 52% (6080/11692)\15 15:47:57.970154 pkt-line.c:85 packet: sideband< \2Compressing objects: 53% (6197/11692)\15 15:47:58.088936 pkt-line.c:85 packet: sideband< \2Compressing objects: 54% (6314/11692)\15 15:47:58.226755 pkt-line.c:85 packet: sideband< \2Compressing objects: 55% (6431/11692)\15 15:47:58.330222 pkt-line.c:85 packet: sideband< \2Compressing objects: 56% (6548/11692)\15 15:47:58.330240 pkt-line.c:85 packet: sideband< \2Compressing objects: 57% (6665/11692)\15 15:47:58.330247 pkt-line.c:85 packet: sideband< \2Compressing objects: 58% (6782/11692)\15 15:47:58.330253 pkt-line.c:85 packet: sideband< \2Compressing objects: 59% (6899/11692)\15 15:47:58.459548 pkt-line.c:85 packet: sideband< \2Compressing objects: 60% (7016/11692)\15 15:47:58.459572 pkt-line.c:85 packet: sideband< \2Compressing objects: 61% (7133/11692)\15 15:47:58.625457 pkt-line.c:85 packet: sideband< \2Compressing objects: 62% (7250/11692)\15 15:47:58.625481 pkt-line.c:85 packet: sideband< \2Compressing objects: 63% (7366/11692)\15 15:47:58.625487 pkt-line.c:85 packet: sideband< \2Compressing objects: 63% (7370/11692)\15 15:47:58.703807 pkt-line.c:85 packet: sideband< \2Compressing objects: 64% (7483/11692)\15 15:47:58.866925 pkt-line.c:85 packet: sideband< \2Compressing objects: 65% (7600/11692)\15 15:47:58.866974 pkt-line.c:85 packet: sideband< \2Compressing objects: 66% (7717/11692)\15 15:47:58.952350 pkt-line.c:85 packet: sideband< \2Compressing objects: 67% (7834/11692)\15 15:47:58.952372 pkt-line.c:85 packet: sideband< \2Compressing objects: 68% (7951/11692)\15 15:47:59.109610 pkt-line.c:85 packet: sideband< \2Compressing objects: 69% (8068/11692)\15 15:47:59.109634 pkt-line.c:85 packet: sideband< \2Compressing objects: 70% (8185/11692)\15 15:47:59.109640 pkt-line.c:85 packet: sideband< \2Compressing objects: 71% (8302/11692)\15 15:47:59.274508 pkt-line.c:85 packet: sideband< \2Compressing objects: 72% (8419/11692)\15 15:47:59.274530 pkt-line.c:85 packet: sideband< \2Compressing objects: 73% (8536/11692)\15 15:47:59.274537 pkt-line.c:85 packet: sideband< \2Compressing objects: 74% (8653/11692)\15 15:47:59.274542 pkt-line.c:85 packet: sideband< \2Compressing objects: 75% (8769/11692)\15 15:47:59.512737 pkt-line.c:85 packet: sideband< \2Compressing objects: 76% (8886/11692)\15 15:47:59.512760 pkt-line.c:85 packet: sideband< \2Compressing objects: 77% (9003/11692)\15 15:47:59.512767 pkt-line.c:85 packet: sideband< \2Compressing objects: 78% (9120/11692)\15 15:47:59.512772 pkt-line.c:85 packet: sideband< \2Compressing objects: 79% (9237/11692)\15 15:47:59.512778 pkt-line.c:85 packet: sideband< \2Compressing objects: 80% (9354/11692)\15 15:47:59.512786 pkt-line.c:85 packet: sideband< \2Compressing objects: 81% (9471/11692)\15 15:47:59.512792 pkt-line.c:85 packet: sideband< \2Compressing objects: 82% (9588/11692)\15 15:47:59.512797 pkt-line.c:85 packet: sideband< \2Compressing objects: 83% (9705/11692)\15 15:47:59.512805 pkt-line.c:85 packet: sideband< \2Compressing objects: 84% (9822/11692)\15 15:47:59.512814 pkt-line.c:85 packet: sideband< \2Compressing objects: 85% (9939/11692)\15 15:47:59.512820 pkt-line.c:85 packet: sideband< \2Compressing objects: 86% (10056/11692)\15 15:47:59.512826 pkt-line.c:85 packet: sideband< \2Compressing objects: 87% (10173/11692)\15 15:47:59.512832 pkt-line.c:85 packet: sideband< \2Compressing objects: 88% (10289/11692)\15 15:47:59.512838 pkt-line.c:85 packet: sideband< \2Compressing objects: 89% (10406/11692)\15 15:47:59.512845 pkt-line.c:85 packet: sideband< \2Compressing objects: 90% (10523/11692)\15 15:47:59.512851 pkt-line.c:85 packet: sideband< \2Compressing objects: 91% (10640/11692)\15 15:47:59.512857 pkt-line.c:85 packet: sideband< \2Compressing objects: 92% (10757/11692)\15 15:47:59.512864 pkt-line.c:85 packet: sideband< \2Compressing objects: 93% (10874/11692)\15 15:47:59.512871 pkt-line.c:85 packet: sideband< \2Compressing objects: 94% (10991/11692)\15 15:47:59.521743 pkt-line.c:85 packet: sideband< \2Compressing objects: 95% (11108/11692)\15 15:47:59.521767 pkt-line.c:85 packet: sideband< \2Compressing objects: 96% (11225/11692)\15 15:47:59.521773 pkt-line.c:85 packet: sideband< \2Compressing objects: 96% (11308/11692)\15 15:47:59.525705 pkt-line.c:85 packet: sideband< \2Compressing objects: 97% (11342/11692)\15 15:47:59.525733 pkt-line.c:85 packet: sideband< \2Compressing objects: 98% (11459/11692)\15 15:47:59.525739 pkt-line.c:85 packet: sideband< \2Compressing objects: 99% (11576/11692)\15 15:47:59.525744 pkt-line.c:85 packet: sideband< \2Compressing objects: 100% (11692/11692)\15 15:47:59.525750 pkt-line.c:85 packet: sideband< \2Compressing objects: 100% (11692/11692), done. remote: Compressing objects: 100% (11692/11692), done. 15:47:59.526430 pkt-line.c:85 packet: sideband< PACK ... 15:50:51.122584 http.c:845 == Info: HTTP/2 stream 5 was not closed cleanly: CANCEL (err 8) 15:50:51.122615 http.c:845 == Info: Connection #0 to host github.com left intact error: RPC failed; curl 92 HTTP/2 stream 5 was not closed cleanly: CANCEL (err 8) error: 3924 bytes of body are still expected 15:50:51.122688 pkt-line.c:85 packet: git> 0002 fetch-pack: unexpected disconnect while reading sideband packet fatal: early EOF fatal: fetch-pack: invalid index-pack output

Spyker2000 commented 3 months ago

This is the first time I have had a git cloning issue. Can I clone individual parts? It looks like the tcp session times out before the files are fully compressed. But looking at the time stamps it is less than 10 seconds from start to finish. 15:47:55 to 15:47:59

Vollbrecht commented 3 months ago

Yeah that seams like a unfortunate issue to have. I read about two potential fixes, either trying to increase the provided memory git can use like mention here or don't try to use use compression by setting git config --global core.compression 0. Are you on a vpn that could play with the http2 stream in another way?

Spyker2000 commented 3 months ago

I am in a rural area on a farm. I don't have cell phone reception on the farm but I have a 2.5Mbps WIFI connection. So my Wifi Router connects to a dish via a Cat 5 cable and then go to a WIFI tower. I can speak to them and see if they can shape the traffic.

In the mean while, can I not wget or ftp the files from github? I have also had a look at your previous comment and will persue that option in the mean. I will keep you informed.

Vollbrecht commented 3 months ago

You can use a custom provided esp-idf installation, you have to than yourself match the version you provide in that path with the version you set in the ESP_IDF_VERSION env variable set in .cargo/config.toml. For more information please read this.

Please keep in mind that we also install the tools for you like the riscv_gcc compiler / cmake / ninja and setup the python env. So essentially what esp-idf needs if you don't provide a fully activated install. Though i think that is not an issue, since our problem is pretty specific to the git clone here.

So try to get the esp-idf version 5.2.2 cloned some other way, and make sure all submodules are in that clonse. Than use the mention IDF_PATH env to point to your provided dir.

Spyker2000 commented 3 months ago

Thanks Frederick. I will read up and see what transpires

Spyker2000 commented 3 months ago

Good news Frederick. I did my first RUST ESP-IDF clone. I spoke to my ISP and temporarily upgraded my WIFI throughput from 3Mbps to 4Mbps with a burst of 4.9Mpbs and successfully ran the cargo build with this message Finished dev [optimized + debuginfo] target(s) in 32m 30s

The .embuild directory is fully loaded and I did a successful cargo run with "Hello World"

I also setup a wifi hot spot on my cell phone and connecting my PC through it. How ever, the throughput was terrible. I go through a cellphone booster with boosts the cell phone signal but not the data signal.

The last thing I would like to try is the custom config to see if that do agit clone without issues. If this does not work I will have to upgrade my ISP to the 4Mpbs package.

Vollbrecht commented 3 months ago

Good to hear that its working for you now. One thing that you defiantly should do, considering your internet connection, is to switch from a per project based install to a global install that is auto managed, in the case where you don't want to provide your own IDF_PATH.

That way multiple projects can share an install. The only thing you have to do is to set the ESP_IDF_TOOLS_INSTALL_DIR="global" described here in your project .cargo/config,toml under the [env] section.

That way you don't pollute your env variables but can use a global managed install.

Closing this issue for now, if you encounter another issue feel free to create a new one. Also note that you can always come into the matrix chat, there you also can find help.