The log output would be cleaner if the clone/fetch command used the --quiet option. This way, the download progress would not be output in logs:
remote: Counting objects: 0% (1/459)
remote: Counting objects: 1% (5/459)
remote: Counting objects: 2% (10/459)
remote: Counting objects: 3% (14/459)
remote: Counting objects: 4% (19/459)
remote: Counting objects: 5% (23/459)
remote: Counting objects: 6% (28/459)
Currently this prints one line per 1 or 2 % progress, for each of remote: Counting objects, remote: Compressing objects, Receiving objects, and Resolving deltas. This is as much as 400 lines of useless logs, maybe more for very big repos.
The log output would be cleaner if the clone/fetch command used the
--quietoption. This way, the download progress would not be output in logs:Currently this prints one line per 1 or 2 % progress, for each of
remote: Counting objects,remote: Compressing objects,Receiving objects, andResolving deltas. This is as much as 400 lines of useless logs, maybe more for very big repos.