I ran into this issue myself so took some logging info:
$ git --version
git version 2.28.0.163.g6104cc2f0b6-goog
$ git log origin/master | head -n 3
commit 28ed2aa6c7bafca17142e15c71c239a68238cb2d
Author: Jeff Yoon <
jeff...@google.com>
Date: Mon Jul 27 20:15:13 2020 +0000
$ git log | head -n 15
commit 5f2f29871a6cd183bc8ee2496b99780ba645e914
Author: Erik Chen <
erik...@chromium.org>
Date: Fri Jul 31 18:19:57 2020 -0700
add lacros to generator
commit b529b0eaafd8b374dfc5458d83ef11e9307e9f79
Author: Erik Chen <
erik...@chromium.org>
Date: Fri Jul 31 13:32:08 2020 -0700
tempt cl
commit 28ed2aa6c7bafca17142e15c71c239a68238cb2d
Author: Jeff Yoon <
jeff...@google.com>
Date: Mon Jul 27 20:15:13 2020 +0000
Note: my branch is only a few days old.
$ GIT_TR2_EVENT=1 GIT_TRACE2_EVENT=1 GIT_DAPPER_TRACE=1 GIT_TRACE_CURL=1 GIT_TRACE_CURL_NO_DATA=1 GIT_REDACT_COOKIES=o,SSO,GSSO_UberProxy,__Secure-GSSO_UberProxy GIT_TRACE_PACKET=1 git push
https://chromium.googlesource.com/chromium/src.git 396c26f16bbee8e149540e5d0e1d1407ac8c5029:refs/for/refs/heads/master%wip,m=Initial_upload,cc=
chromium...@chromium.org > temp10 2>&1
temp10.zip file attached. I manually killed it after ~1 hour. Note: I took a quick scan through the log file -- it doesn't look like we're using protocol v2.
I then manually edited .git/config and the command line command to point to sso:// instead of https://. I was hoping to get a dapper trace of the problem -- but surprisingly, it completed very quickly. See temp11 attached.
$ GIT_TR2_EVENT=1 GIT_TRACE2_EVENT=1 GIT_DAPPER_TRACE=1 GIT_TRACE_CURL=1 GIT_TRACE_CURL_NO_DATA=1 GIT_REDACT_COOKIES=o,SSO,GSSO_UberProxy,__Secure-GSSO_UberProxy GIT_TRACE_PACKET=1 git push sso://
chromium.googlesource.com/chromium/src.git 396c26f16bbee8e149540e5d0e1d1407ac8c5029:refs/for/refs/heads/master%wip,m=Initial_upload,cc=
chromium...@chromium.org > temp11 2>&1
Weirdly enough, temp11 also does not seem to be using protocol v2. It does have a dapper trace but since it finished so quickly [~23 seconds], seems like the problem is not reproducing with sso://?
@Andy Perelson -- hopefully that's enough info to get the git-on-borg team started?