Cloning via bundle URIs does not give a progress meter
When you clone a repo you get:
$ git clone git@gitlab.com:gitlab-org/gitlab.git
Cloning into 'gitlab'...
remote: Enumerating objects: 5349655, done.
remote: Counting objects: 100% (261781/261781), done.
remote: Compressing objects: 100% (63985/63985), done.
Receiving objects: 3% (160490/5349655), 42.62 MiB | 10.66 MiB/s
...
And you see progress while things are happening.
But when bundle-URI is used, you get:
$ git clone git@gitlab.com:gitlab-org/gitlab.git
Cloning into 'gitlab'...
It can take minutes before you see another message from git. This is because the bundle is downloaded, which can be gigabytes large, and while that's ungoing nothing is shown.
We should give the user more feedback Git is still doing things.