From 09212961a43d28add13fadf3f53a1e2c76758be4 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Thu, 3 Apr 2025 12:55:26 -0700 Subject: [PATCH] Add action "--help" note about running compact after recreate (#1053). --- borgmatic/commands/arguments.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/borgmatic/commands/arguments.py b/borgmatic/commands/arguments.py index 671893c44..15bb286c4 100644 --- a/borgmatic/commands/arguments.py +++ b/borgmatic/commands/arguments.py @@ -1525,8 +1525,8 @@ def make_parsers(): recreate_parser = action_parsers.add_parser( 'recreate', aliases=ACTION_ALIASES['recreate'], - help='Recreate an archive in a repository', - description='Recreate an archive in a repository', + help='Recreate an archive in a repository (with Borg 1.2+, you must run compact afterwards to actually free space)', + description='Recreate an archive in a repository (with Borg 1.2+, you must run compact afterwards to actually free space)', add_help=False, ) recreate_group = recreate_parser.add_argument_group('recreate arguments')