From c63aa97d9dec4e63b907b145b15cb6894a7dce60 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Wed, 31 Jul 2024 10:30:27 -0300 Subject: [PATCH] copy --- HISTORY.md | 8 ++++---- aider/website/HISTORY.md | 8 ++++---- aider/website/docs/git.md | 10 ++++++++++ aider/website/docs/install/docker.md | 6 ++++++ 4 files changed, 24 insertions(+), 8 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index dec335f27..4817fb10b 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -3,18 +3,18 @@ ## main branch -- Commit message improvements: +- [Commit message](http://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). -- Linting improvements: +- [Linting](https://aider.chat/docs/usage/lint-test.html) improvements: - Ask before fixing lint errors. - Improved performance of `--lint` on all dirty files in repo. - Improved lint flow, now doing code edit auto-commit before linting. - Bugfix to properly handle subprocess encodings (also for `/run`). -- Improved docker support: +- Improved [docker support](https://aider.chat/docs/install/docker.html): - Resolved permission issues when using `docker run --user xxx`. - - New paul-gauthier/aider-full docker image, which includes all extras. + - New paulgauthier/aider-full docker image, which includes all extras. - Switching to code and ask mode no longer summarizes the chat history. - Added graph of aider's contribution to each release. - Generic auto-completions are provided for `/commands` without a completion override. diff --git a/aider/website/HISTORY.md b/aider/website/HISTORY.md index 921412410..187eec496 100644 --- a/aider/website/HISTORY.md +++ b/aider/website/HISTORY.md @@ -18,18 +18,18 @@ cog.out(text) ## main branch -- Commit message improvements: +- [Commit message](http://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). -- Linting improvements: +- [Linting](https://aider.chat/docs/usage/lint-test.html) improvements: - Ask before fixing lint errors. - Improved performance of `--lint` on all dirty files in repo. - Improved lint flow, now doing code edit auto-commit before linting. - Bugfix to properly handle subprocess encodings (also for `/run`). -- Improved docker support: +- Improved [docker support](https://aider.chat/docs/install/docker.html): - Resolved permission issues when using `docker run --user xxx`. - - New paul-gauthier/aider-full docker image, which includes all extras. + - New paulgauthier/aider-full docker image, which includes all extras. - Switching to code and ask mode no longer summarizes the chat history. - Added graph of aider's contribution to each release. - Generic auto-completions are provided for `/commands` without a completion override. diff --git a/aider/website/docs/git.md b/aider/website/docs/git.md index c64bed71f..e863c6053 100644 --- a/aider/website/docs/git.md +++ b/aider/website/docs/git.md @@ -34,6 +34,16 @@ While it is not recommended, you can disable aider's use of git in a few ways: - `--no-dirty-commits` will stop aider from committing dirty files before applying its edits. - `--no-git` will completely stop aider from using git on your files. You should ensure you are keeping sensible backups of the files you are working with. +## Commit messages + +By default, aider creates commit messages which follow +[Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/). + +You can customize the +[commit prompt](https://github.com/paul-gauthier/aider/blob/main/aider/prompts.py#L5) +with the `--commit-prompt` option. +You can place that on the command line, or +[configure it via a config file or environment variables](https://aider.chat/docs/config.html). ## Commit attribution diff --git a/aider/website/docs/install/docker.md b/aider/website/docs/install/docker.md index a3975fbb7..7e1944b3b 100644 --- a/aider/website/docs/install/docker.md +++ b/aider/website/docs/install/docker.md @@ -35,7 +35,13 @@ The above command installs the aider core, which is missing some of the extra features like interactive help, the browser GUI and Playwright support for scraping web pages. +Use `paulgauthier/aider-full` to get all the features, at the expense of a larger +docker image. +``` +docker pull paulgauthier/aider-full +docker run -it --volume $(pwd):/app paulgauthier/aider-full --openai-api-key $OPENAI_API_KEY [...other aider args...] +``` ## Limitations