PHP: Handle error "Everything up-to-date" when pushing

This documentation is part of the Getting started guide. View the full guide here: How to get started with PHP on Stackhero.

👋 Welcome to the Stackhero documentation!

Stackhero provides a PHP cloud platform designed for fast, reliable deployments:

  • Deploy your PHP application to production in seconds with a simple git push.
  • Use your own domain, with automatic HTTPS certificates configured for you. There are no manual steps needed.
  • Rely on automatic backups, one-click updates, and clear, predictable pricing. Stackhero handles these details, so you can focus on your code.
  • Benefit from strong performance and security on a private, dedicated infrastructure built specifically for your applications.

Make your workflow smoother and save time. Getting started with Stackhero's PHP cloud hosting takes just a few minutes.

If Git says Everything up-to-date and you do not see your changes deployed, it is likely you forgot to commit your changes. You can resolve this by running:

git add -A .
git commit -m "Your commit message"
git push stackhero main

If you have not changed any code but still want to trigger a deployment, you can use an empty commit:

git commit --allow-empty -m "Force update"
git push stackhero main