Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

Gabotronix's avatar

git push to remote in verbose mode?

Hi everybody, my pushes to git lab are always taking too long around the 17% and I want to see what files are creating trouble! I think it might be the images, I awas wondering if git has a way to show what files are being pushed to gitlab remote in my commadn shell...

0 likes
2 replies
bobbybouwmann's avatar

I don't think there is a real command to do this. I know you can list all the files you're about to commit with this

git show commit_id --name-only

However, that doesn't give you an overview of what is taking long.

You can probably already see what is taking long, because of large files. Git itself is blazing fast, so if it's slow it's either big files or a slow connection. You can always run git push -v to get the output. Another command that might be useful is this one git push -v --dry-run. It won't perform anything but will give you the expected output of what actually will happen.

Gabotronix's avatar

I want to see what files are being pushed to remote in real time.

Please or to participate in this conversation.