Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is going on during git's "remote processing"

Every time I push to a git remote there is a line that says "remote: processing..." This usually goes really fast when I push to github or Bitbucket but when I push to an Amazon Beanstalk deployment it takes between 10 seconds and 2 minutes".

What exactly is the remote "processing"?

like image 650
Julian Avatar asked Dec 06 '25 09:12

Julian


1 Answers

I assume you refer to git aws.push that takes so long. The reason is that git push submits your changed files (commits) to the remote git repository while git aws.push issues AWS API commands to transfer your files to Elastic Beanstalk.
To see that, you can check out the script that's executed during this command. run this:
cat .git/AWSDevTools/aws.elasticbeanstalk.push

You'll see that the so called git aws.push command is actually a script that uses AWS API and has nothing to do with git repositories.

like image 132
Tal Avatar answered Dec 08 '25 02:12

Tal



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!