none
none

Reputation: 12087

show progress bar when pushing using git

I'm trying to push a large file to a git repository using git push -u origin master but it is failing on the half way. It would be of great help if I can see when it fails. Is there a way to show something like a progress bar in git push?

Edit: Doing some brute force I was able to push the file at last on my 7th or 8th trial but I'm still curious about the question.

Upvotes: 9

Views: 7412

Answers (1)

Marware
Marware

Reputation: 479

git push -v origin

Tells me enough to go.

Upvotes: 3

Related Questions