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

  1. Open your server and go to the Git section for the deployed site.
  2. Use Git pull to fetch and apply the latest commits from your branch.
  3. 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

  1. Push your changes to GitHub or GitLab.
  2. Open the panel and pull.
  3. Run migrations or rebuild assets if needed.

This gives you a simple, repeatable deploy flow without logging into the server over SSH.

Related Articles