mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 17:55:01 +00:00
copy
This commit is contained in:
parent
c207c7839a
commit
1481c8c210
5 changed files with 47 additions and 0 deletions
|
@ -154,6 +154,12 @@
|
||||||
## Enable/disable commits when repo is found dirty (default: True)
|
## Enable/disable commits when repo is found dirty (default: True)
|
||||||
#dirty-commits: true
|
#dirty-commits: true
|
||||||
|
|
||||||
|
## Attribute aider code changes in the git author name (default: True)
|
||||||
|
#attribute-author: true
|
||||||
|
|
||||||
|
## Attribute aider commits in the git committer name (default: True)
|
||||||
|
#attribute-committer: true
|
||||||
|
|
||||||
## Perform a dry run without modifying files (default: False)
|
## Perform a dry run without modifying files (default: False)
|
||||||
#dry-run: false
|
#dry-run: false
|
||||||
|
|
||||||
|
|
|
@ -162,6 +162,12 @@
|
||||||
## Enable/disable commits when repo is found dirty (default: True)
|
## Enable/disable commits when repo is found dirty (default: True)
|
||||||
#AIDER_DIRTY_COMMITS=true
|
#AIDER_DIRTY_COMMITS=true
|
||||||
|
|
||||||
|
## Attribute aider code changes in the git author name (default: True)
|
||||||
|
#AIDER_ATTRIBUTE_AUTHOR=true
|
||||||
|
|
||||||
|
## Attribute aider commits in the git committer name (default: True)
|
||||||
|
#AIDER_ATTRIBUTE_COMMITTER=true
|
||||||
|
|
||||||
## Perform a dry run without modifying files (default: False)
|
## Perform a dry run without modifying files (default: False)
|
||||||
#AIDER_DRY_RUN=false
|
#AIDER_DRY_RUN=false
|
||||||
|
|
||||||
|
|
|
@ -182,6 +182,12 @@ cog.outl("```")
|
||||||
## Enable/disable commits when repo is found dirty (default: True)
|
## Enable/disable commits when repo is found dirty (default: True)
|
||||||
#dirty-commits: true
|
#dirty-commits: true
|
||||||
|
|
||||||
|
## Attribute aider code changes in the git author name (default: True)
|
||||||
|
#attribute-author: true
|
||||||
|
|
||||||
|
## Attribute aider commits in the git committer name (default: True)
|
||||||
|
#attribute-committer: true
|
||||||
|
|
||||||
## Perform a dry run without modifying files (default: False)
|
## Perform a dry run without modifying files (default: False)
|
||||||
#dry-run: false
|
#dry-run: false
|
||||||
|
|
||||||
|
|
|
@ -195,6 +195,12 @@ cog.outl("```")
|
||||||
## Enable/disable commits when repo is found dirty (default: True)
|
## Enable/disable commits when repo is found dirty (default: True)
|
||||||
#AIDER_DIRTY_COMMITS=true
|
#AIDER_DIRTY_COMMITS=true
|
||||||
|
|
||||||
|
## Attribute aider code changes in the git author name (default: True)
|
||||||
|
#AIDER_ATTRIBUTE_AUTHOR=true
|
||||||
|
|
||||||
|
## Attribute aider commits in the git committer name (default: True)
|
||||||
|
#AIDER_ATTRIBUTE_COMMITTER=true
|
||||||
|
|
||||||
## Perform a dry run without modifying files (default: False)
|
## Perform a dry run without modifying files (default: False)
|
||||||
#AIDER_DRY_RUN=false
|
#AIDER_DRY_RUN=false
|
||||||
|
|
||||||
|
|
|
@ -9,6 +9,11 @@ description: Details about all of aider's settings.
|
||||||
You can use `aider --help` to see all the available options,
|
You can use `aider --help` to see all the available options,
|
||||||
or review them below.
|
or review them below.
|
||||||
|
|
||||||
|
- TOC
|
||||||
|
{:toc}
|
||||||
|
|
||||||
|
## Usage summary
|
||||||
|
|
||||||
<!--[[[cog
|
<!--[[[cog
|
||||||
from aider.args import get_md_help
|
from aider.args import get_md_help
|
||||||
cog.out(get_md_help())
|
cog.out(get_md_help())
|
||||||
|
@ -35,6 +40,8 @@ usage: aider [-h] [--llm-history-file] [--openai-api-key]
|
||||||
[--gitignore | --no-gitignore] [--aiderignore]
|
[--gitignore | --no-gitignore] [--aiderignore]
|
||||||
[--auto-commits | --no-auto-commits]
|
[--auto-commits | --no-auto-commits]
|
||||||
[--dirty-commits | --no-dirty-commits]
|
[--dirty-commits | --no-dirty-commits]
|
||||||
|
[--attribute-author | --no-attribute-author]
|
||||||
|
[--attribute-committer | --no-attribute-committer]
|
||||||
[--dry-run | --no-dry-run] [--commit] [--lint]
|
[--dry-run | --no-dry-run] [--commit] [--lint]
|
||||||
[--lint-cmd] [--auto-lint | --no-auto-lint]
|
[--lint-cmd] [--auto-lint | --no-auto-lint]
|
||||||
[--test-cmd] [--auto-test | --no-auto-test] [--test]
|
[--test-cmd] [--auto-test | --no-auto-test] [--test]
|
||||||
|
@ -292,6 +299,22 @@ Aliases:
|
||||||
- `--dirty-commits`
|
- `--dirty-commits`
|
||||||
- `--no-dirty-commits`
|
- `--no-dirty-commits`
|
||||||
|
|
||||||
|
### `--attribute-author`
|
||||||
|
Attribute aider code changes in the git author name (default: True)
|
||||||
|
Default: True
|
||||||
|
Environment variable: `AIDER_ATTRIBUTE_AUTHOR`
|
||||||
|
Aliases:
|
||||||
|
- `--attribute-author`
|
||||||
|
- `--no-attribute-author`
|
||||||
|
|
||||||
|
### `--attribute-committer`
|
||||||
|
Attribute aider commits in the git committer name (default: True)
|
||||||
|
Default: True
|
||||||
|
Environment variable: `AIDER_ATTRIBUTE_COMMITTER`
|
||||||
|
Aliases:
|
||||||
|
- `--attribute-committer`
|
||||||
|
- `--no-attribute-committer`
|
||||||
|
|
||||||
### `--dry-run`
|
### `--dry-run`
|
||||||
Perform a dry run without modifying files (default: False)
|
Perform a dry run without modifying files (default: False)
|
||||||
Default: False
|
Default: False
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue