jaytrixz
jaytrixz

Reputation: 4079

How to Git Pull and Display Status Every Second

I’d like to git pull and display the status of the of it displayed per line every second with the speed of the download as well. The behavior is just like doing a ping of a certain website and it displays how fast your ping is every second every line.

Upvotes: 1

Views: 144

Answers (1)

VonC
VonC

Reputation: 1324827

Try first to see what a git fetch --progress would report (since a pull is a fetch plus a merge)

You can also activate GIT_TRACE2_PERF

export GIT_TRACE2_PERF=1
git pull

Upvotes: 1

Related Questions