From b5fb65b1cce2ca737214a3e30e110f991a0ef341 Mon Sep 17 00:00:00 2001 From: dklimpel <5740567+dklimpel@users.noreply.github.com> Date: Mon, 4 Dec 2023 22:01:09 +0100 Subject: [PATCH] rename purge to prune --- docs/setup/general.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/setup/general.md b/docs/setup/general.md index d802c109..0c2364af 100644 --- a/docs/setup/general.md +++ b/docs/setup/general.md @@ -69,18 +69,18 @@ mas-cli config sync ``` By default, this will only add new clients and upstream OAuth providers, and will not remove entries that were removed from the configuration file. -To do so, use the `--purge` option: +To do so, use the `--prune` option: ```sh -mas-cli config sync --purge +mas-cli config sync --prune ``` Before synchronizing the configuration file, it is *recommended* to do it in with the `--dry-run` option to see what will be changed, without committing the changes to the database: ```sh mas-cli config sync --dry-run -# with the --purge option -mas-cli config sync --dry-run --purge +# with the --prune option +mas-cli config sync --dry-run --prune ``` ## Next step