Skip to content

Commit

Permalink
copy
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-gauthier committed Jul 31, 2024
1 parent aac2ab7 commit 360e311
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 41 deletions.
2 changes: 1 addition & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

### main branch

- [Commit message](http://aider.chat/docs/git.html#commit-messages) improvements:
- [Commit message](https://aider.chat/docs/git.html#commit-messages) improvements:
- Added Conventional Commits guidelines to commit message prompt.
- Added `--commit-prompt` to customize the commit message prompt.
- Added strong model as a fallback for commit messages (and chat summaries).
Expand Down
6 changes: 3 additions & 3 deletions aider/website/HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ cog.out(text)

# Release history

## main branch
### main branch

- [Commit message](http://aider.chat/docs/git.html#commit-messages) improvements:
- [Commit message](https://aider.chat/docs/git.html#commit-messages) improvements:
- Added Conventional Commits guidelines to commit message prompt.
- Added `--commit-prompt` to customize the commit message prompt.
- Added strong model as a fallback for commit messages (and chat summaries).
Expand All @@ -37,7 +37,7 @@ cog.out(text)
- Bugfix in `/run` add to chat approval logic.
- Aider wrote 58% of the code in this release.

## Aider v0.46.1
### Aider v0.46.1

- Downgraded stray numpy dependency back to 1.26.4.

Expand Down
12 changes: 6 additions & 6 deletions aider/website/assets/sample.aider.conf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@
#######
# Main:

## specify a file to edit (can be used multiple times)
#file:

## Specify the OpenAI API key
#openai-api-key:

Expand Down Expand Up @@ -170,6 +167,9 @@
## Prefix commit messages with 'aider: ' (default: False)
#attribute-commit-message: false

## Commit all pending changes with a suitable commit message, then exit
#commit: false

## Specify a custom prompt for generating commit messages
#commit-prompt:

Expand All @@ -179,9 +179,6 @@
########################
# Fixing and committing:

## Commit all pending changes with a suitable commit message, then exit
#commit: false

## Lint and fix provided files, or dirty files if none provided
#lint: false

Expand All @@ -203,6 +200,9 @@
#################
# Other Settings:

## specify a file to edit (can be used multiple times)
#file:

## Use VI editing mode in the terminal (default: False)
#vim: false

Expand Down
12 changes: 6 additions & 6 deletions aider/website/assets/sample.env
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@
#######
# Main:

## specify a file to edit (can be used multiple times)
#AIDER_FILE=

## Specify the OpenAI API key
#OPENAI_API_KEY=

Expand Down Expand Up @@ -174,6 +171,9 @@
## Prefix commit messages with 'aider: ' (default: False)
#AIDER_ATTRIBUTE_COMMIT_MESSAGE=false

## Commit all pending changes with a suitable commit message, then exit
#AIDER_COMMIT=false

## Specify a custom prompt for generating commit messages
#AIDER_COMMIT_PROMPT=

Expand All @@ -183,9 +183,6 @@
########################
# Fixing and committing:

## Commit all pending changes with a suitable commit message, then exit
#AIDER_COMMIT=false

## Lint and fix provided files, or dirty files if none provided
#AIDER_LINT=false

Expand All @@ -207,6 +204,9 @@
#################
# Other Settings:

## specify a file to edit (can be used multiple times)
#AIDER_FILE=

## Use VI editing mode in the terminal (default: False)
#AIDER_VIM=false

Expand Down
12 changes: 6 additions & 6 deletions aider/website/docs/config/aider_conf.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,6 @@ cog.outl("```")
#######
# Main:
## specify a file to edit (can be used multiple times)
#file:
## Specify the OpenAI API key
#openai-api-key:
Expand Down Expand Up @@ -209,6 +206,9 @@ cog.outl("```")
## Prefix commit messages with 'aider: ' (default: False)
#attribute-commit-message: false
## Commit all pending changes with a suitable commit message, then exit
#commit: false
## Specify a custom prompt for generating commit messages
#commit-prompt:
Expand All @@ -218,9 +218,6 @@ cog.outl("```")
########################
# Fixing and committing:
## Commit all pending changes with a suitable commit message, then exit
#commit: false
## Lint and fix provided files, or dirty files if none provided
#lint: false
Expand All @@ -242,6 +239,9 @@ cog.outl("```")
#################
# Other Settings:
## specify a file to edit (can be used multiple times)
#file:
## Use VI editing mode in the terminal (default: False)
#vim: false
Expand Down
12 changes: 6 additions & 6 deletions aider/website/docs/config/dotenv.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,6 @@ cog.outl("```")
#######
# Main:
## specify a file to edit (can be used multiple times)
#AIDER_FILE=
## Specify the OpenAI API key
#OPENAI_API_KEY=
Expand Down Expand Up @@ -216,6 +213,9 @@ cog.outl("```")
## Prefix commit messages with 'aider: ' (default: False)
#AIDER_ATTRIBUTE_COMMIT_MESSAGE=false
## Commit all pending changes with a suitable commit message, then exit
#AIDER_COMMIT=false
## Specify a custom prompt for generating commit messages
#AIDER_COMMIT_PROMPT=
Expand All @@ -225,9 +225,6 @@ cog.outl("```")
########################
# Fixing and committing:
## Commit all pending changes with a suitable commit message, then exit
#AIDER_COMMIT=false
## Lint and fix provided files, or dirty files if none provided
#AIDER_LINT=false
Expand All @@ -249,6 +246,9 @@ cog.outl("```")
#################
# Other Settings:
## specify a file to edit (can be used multiple times)
#AIDER_FILE=
## Use VI editing mode in the terminal (default: False)
#AIDER_VIM=false
Expand Down
26 changes: 13 additions & 13 deletions aider/website/docs/config/options.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ from aider.args import get_md_help
cog.out(get_md_help())
]]]-->
```
usage: aider [-h] [--file] [--openai-api-key] [--anthropic-api-key]
[--model] [--opus] [--sonnet] [--4] [--4o] [--4-turbo]
usage: aider [-h] [--openai-api-key] [--anthropic-api-key] [--model]
[--opus] [--sonnet] [--4] [--4o] [--4-turbo]
[--35turbo] [--models] [--openai-api-base]
[--openai-api-type] [--openai-api-version]
[--openai-api-deployment-id] [--openai-organization-id]
Expand All @@ -48,10 +48,10 @@ usage: aider [-h] [--file] [--openai-api-key] [--anthropic-api-key]
[--attribute-author | --no-attribute-author]
[--attribute-committer | --no-attribute-committer]
[--attribute-commit-message | --no-attribute-commit-message]
[--commit-prompt] [--dry-run | --no-dry-run] [--commit]
[--commit] [--commit-prompt] [--dry-run | --no-dry-run]
[--lint] [--lint-cmd] [--auto-lint | --no-auto-lint]
[--test-cmd] [--auto-test | --no-auto-test] [--test]
[--vim] [--voice-language] [--version]
[--file] [--vim] [--voice-language] [--version]
[--just-check-update]
[--check-update | --no-check-update] [--apply] [--yes]
[-v] [--show-repo-map] [--show-prompts] [--exit]
Expand All @@ -69,10 +69,6 @@ Aliases:

## Main:

### `--file FILE`
specify a file to edit (can be used multiple times)
Environment variable: `AIDER_FILE`

### `--openai-api-key OPENAI_API_KEY`
Specify the OpenAI API key
Environment variable: `OPENAI_API_KEY`
Expand Down Expand Up @@ -335,6 +331,11 @@ Aliases:
- `--attribute-commit-message`
- `--no-attribute-commit-message`

### `--commit`
Commit all pending changes with a suitable commit message, then exit
Default: False
Environment variable: `AIDER_COMMIT`

### `--commit-prompt PROMPT`
Specify a custom prompt for generating commit messages
Environment variable: `AIDER_COMMIT_PROMPT`
Expand All @@ -349,11 +350,6 @@ Aliases:

## Fixing and committing:

### `--commit`
Commit all pending changes with a suitable commit message, then exit
Default: False
Environment variable: `AIDER_COMMIT`

### `--lint`
Lint and fix provided files, or dirty files if none provided
Default: False
Expand Down Expand Up @@ -392,6 +388,10 @@ Environment variable: `AIDER_TEST`

## Other Settings:

### `--file FILE`
specify a file to edit (can be used multiple times)
Environment variable: `AIDER_FILE`

### `--vim`
Use VI editing mode in the terminal (default: False)
Default: False
Expand Down

0 comments on commit 360e311

Please sign in to comment.