Git clone verbose output?

As far as I undestand it’s not the issue of the Docker, but issue of the git. By default git shows progress if you are in an interactive console. If you are not you could specify additional paremeters to git clone to output progress to stdout:

git clone --progress --verbose .....

Leave a Comment