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.
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.
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.
git push -v origin
Tells me enough to go.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With