Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

show progress bar when pushing using git

Tags:

git

git-push

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.

like image 208
none Avatar asked Sep 17 '12 19:09

none


People also ask

How do I see a pushed commit?

In Git, we can use git show commit_id --name-only to list all the committed files that are going to push to the remote repository.

How can I see where git is pointing to?

git remote -v will show you what origin is; origin/master is your “bookmark” for the last known state of the master branch of the origin repository, and your own master is a tracking branch for origin/master . This is all as it should be.


1 Answers

git push -v origin

Tells me enough to go.

like image 85
Marware Avatar answered Oct 01 '22 00:10

Marware