I'm doing pod update MyPod --verbose
for my pod, which lives in a private Github repo (so downloaded via ssh). Sometimes in takes 5 minutes, sometimes 25 (thus driving me crazy). I'm using --verbose
to see what's going on.
Usually it stucks on git clone
:
Fetching external sources
-> Pre-downloading: `MyPod` from `MyGithubUrl`, branch `MyBranch`
$ /usr/bin/git ls-remote MyGithubUrl MyBranch
611a1146a741404d6e4a982fa1548c95d3772d54 refs/heads/MyBranch
> Git download
> Git download
$ /usr/bin/git clone MyBranch
/var/folders/kj/55ym60x155dctzvc8pvym10r0000gn/T/d20210830-13232-1gq5j6e --template=
Cloning into '/var/folders/kj/55ym60x155dctzvc8pvym10r0000gn/T/d20210830-13232-1gq5j6e'...
I'm checking a Network
tab in Activity Monitor
to see if the download is in progress - and yes, it is, but I don't see smth like "pod update is 56% completed":
Is there a way to see the exact progress of Git download
step of pod update
?