From c30b3023635daa09053b7d4fb5adc9e4cd2ede74 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Mon, 5 Jun 2023 11:15:38 -0700 Subject: [PATCH] improved --help --- aider/main.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/aider/main.py b/aider/main.py index 89824fccd..54fed2152 100644 --- a/aider/main.py +++ b/aider/main.py @@ -123,27 +123,27 @@ def main(args=None, input=None, output=None): action="store_true", dest="auto_commits", default=True, - help="Enable auto commit of changes (default: True)", + help="Enable auto commit of GPT changes (default: True)", ) parser.add_argument( "--no-auto-commits", action="store_false", dest="auto_commits", - help="Disable auto commit of changes", + help="Disable auto commit of GPT changes", ) parser.add_argument( "--dirty-commits", action="store_true", dest="dirty_commits", - help="Enable dirty commit of changes", + help="Enable commits when repo is found dirty", default=True, ) parser.add_argument( "--no-dirty-commits", action="store_false", dest="dirty_commits", - help="Disable dirty commit of changes", + help="Disable commits when repo is found dirty", ) parser.add_argument( "--openai-api-key",