I am trying to clone an Azure repo within my company's network. Sadly it fails on one single repo inside my org. It works on all other repos (all repos are identically configured).
git clone https://user:<PersonalAccessToken>@dev.azure.com/<somePath> git_workdir
Cloning into 'git_workdir'
error: RPC failed; HTTP 403 curl 22 The requested URL returned error: 403
fatal: the remote end hung up unexpectedly
Since the HTTP status code is a 403 Forbidden one might think I lack access rights, but I re-generated a valid Azure Personal Access token so I am sure I have them.
I tried GIT_TRACE=1 GIT_TRACE_PACKET=1 GIT_CURL_VERBOSE=1
for diagnosis but no useful info was printed.
I have no idea what is going on, my best guess is that it's related to repo size (it's much larger than other repos) and/or some shenanigans with our org's internal proxy (which is causing us a lot of other issues already).