Documentation Index
Fetch the complete documentation index at: https://www.aptible.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Cause
This message means that the local branch you’re pushing to Aptible is already at exactly the same revision as is currently deployed on Aptible.Resolution
-
If you’ve already pushed your code to Aptible and simply want to restart the app, you can do so by running the
aptible restartcommand. If you actually want to trigger a new build from the same code you’ve already pushed, you can useaptible rebuildinstead. -
If you’re pushing a branch other than
master, you must still push to the remote branch namedmasterin order to trigger a build. Assuming you’ve got a Git remote namedaptible, you can do so with a command like the followinggit push aptible local-branch:master.

