Skip to content

Commit

Permalink
new file: deploy-an-app-without-pushing-an-empty-commit.md
Browse files Browse the repository at this point in the history
  • Loading branch information
byt3h3ad committed Jun 16, 2024
1 parent cef3254 commit 2754305
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions vercel/deploy-an-app-without-pushing-an-empty-commit.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Deploy An App Without Pushing An Empty Commit

The [Vercel CLI](https://vercel.com/docs/cli) allows you to make updated
deployments of an app right from the command line.

Many providers require you to push a new commit to the main branch to trigger a
deployment. If there are changes, you can trigger a deployment by pushing
these. If there aren't changes, but you want to re-deploy what is already
there, then you have to create an empty commit and push that.

With the [Vercel CLI](https://vercel.com/docs/platform/deployments#vercel-cli),
you can re-deploy your app without pushing commits. You do this by including
the `--force` flag.

To re-deploy the preview environment:

```bash
$ vercel --force
```

To re-deploy the production environment:

```bash
$ vercel --prod --force
```

0 comments on commit 2754305

Please sign in to comment.