mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 09:44:59 +00:00
improved --help
This commit is contained in:
parent
95b32a74a9
commit
c30b302363
1 changed files with 4 additions and 4 deletions
|
@ -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",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue