1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-05 08:08:02 +00:00

Update a recent til with some corrected details

This commit is contained in:
jbranchaud
2020-11-30 19:54:17 -06:00
parent d3eac4bfa4
commit 84930cca2f

View File

@@ -1,23 +1,25 @@
# Deploy An App Without Pushing An Empty Commit # Deploy An App Without Pushing An Empty Commit
The [Vercel CLI](https://vercel.com/docs/cli) allows you to make updated 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 deployments of an app right from the command line.
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 Many providers require you to push a new commit to the main branch to trigger a
changes, but you want to re-deploy what is already there, then you have to deployment. If there are changes, you can trigger a deployment by pushing
create an empty commit and push that. 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), With the [Vercel CLI](https://vercel.com/docs/platform/deployments#vercel-cli),
you can deploy and re-deploy the app without pushing commits. you can re-deploy your app without pushing commits. You do this by including
the `--force` flag.
To trigger a preview deployment: To re-deploy the preview environment:
```bash ```bash
$ vercel $ vercel --force
``` ```
To trigger a production deployment: To re-deploy the production environment:
```bash ```bash
$ vercel --prod $ vercel --prod --force
``` ```