From 85973f20fcd022169ebe81fe71b503ab04c66fb5 Mon Sep 17 00:00:00 2001 From: Daniel Mach Date: Thu, 9 Mar 2023 15:27:01 +0100 Subject: [PATCH] commit: Update help text for --force option --- osc/commandline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osc/commandline.py b/osc/commandline.py index 5cb218cb..be869ff8 100644 --- a/osc/commandline.py +++ b/osc/commandline.py @@ -5013,7 +5013,7 @@ Please submit there instead, or use --nodevelproject to force direct submission. @cmdln.option('-F', '--file', metavar='FILE', help='read log message from FILE, \'-\' denotes standard input.') @cmdln.option('-f', '--force', default=False, action="store_true", - help='force commit, even if there were no changes') + help='Allow empty commit with no changes. When commiting a project, allow removing packages even if other packages depend on them.') @cmdln.option('--skip-local-service-run', '--noservice', default=False, action="store_true", help='Skip service run of configured source services for local run') def do_commit(self, subcmd, opts, *args):