Deployment & Git
Update your app with Git pull
Update your app with Git pull
After deploying from Git, you can pull the latest changes any time from the panel.
Pull updates
- Open your server and go to the Git section for the deployed site.
- Use Git pull to fetch and apply the latest commits from your branch.
- For Laravel and similar apps, run any follow-up steps (Composer install, migrations, cache) from the panel.
Reset to a clean state
If local changes on the server conflict with the repository, use Git reset to force the server back to match your branch exactly. Use this carefully — it discards changes made directly on the server.
Typical workflow
- Push your changes to GitHub or GitLab.
- Open the panel and pull.
- Run migrations or rebuild assets if needed.
This gives you a simple, repeatable deploy flow without logging into the server over SSH.