From 8dfda27151158813108ecb490ca992182117aef5 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Wed, 2 Oct 2024 09:30:35 -0700 Subject: [PATCH] copy --- aider/website/assets/sample.aider.conf.yml | 3 +++ aider/website/assets/sample.env | 3 +++ aider/website/docs/config/aider_conf.md | 3 +++ aider/website/docs/config/dotenv.md | 3 +++ aider/website/docs/config/options.md | 12 +++++++++--- 5 files changed, 21 insertions(+), 3 deletions(-) diff --git a/aider/website/assets/sample.aider.conf.yml b/aider/website/assets/sample.aider.conf.yml index e4b47404a..84082ee7e 100644 --- a/aider/website/assets/sample.aider.conf.yml +++ b/aider/website/assets/sample.aider.conf.yml @@ -236,6 +236,9 @@ ## Perform a dry run without modifying files (default: False) #dry-run: false +## Skip the sanity check for the git repository (default: False) +#skip-sanity-check-repo: false + ######################## # Fixing and committing: diff --git a/aider/website/assets/sample.env b/aider/website/assets/sample.env index ba588eb7f..57fc757d1 100644 --- a/aider/website/assets/sample.env +++ b/aider/website/assets/sample.env @@ -240,6 +240,9 @@ ## Perform a dry run without modifying files (default: False) #AIDER_DRY_RUN=false +## Skip the sanity check for the git repository (default: False) +#AIDER_SKIP_SANITY_CHECK_REPO=false + ######################## # Fixing and committing: diff --git a/aider/website/docs/config/aider_conf.md b/aider/website/docs/config/aider_conf.md index bf828ad17..ceedb5d99 100644 --- a/aider/website/docs/config/aider_conf.md +++ b/aider/website/docs/config/aider_conf.md @@ -284,6 +284,9 @@ cog.outl("```") ## Perform a dry run without modifying files (default: False) #dry-run: false +## Skip the sanity check for the git repository (default: False) +#skip-sanity-check-repo: false + ######################## # Fixing and committing: diff --git a/aider/website/docs/config/dotenv.md b/aider/website/docs/config/dotenv.md index f654c3b77..76a313c78 100644 --- a/aider/website/docs/config/dotenv.md +++ b/aider/website/docs/config/dotenv.md @@ -282,6 +282,9 @@ cog.outl("```") ## Perform a dry run without modifying files (default: False) #AIDER_DRY_RUN=false +## Skip the sanity check for the git repository (default: False) +#AIDER_SKIP_SANITY_CHECK_REPO=false + ######################## # Fixing and committing: diff --git a/aider/website/docs/config/options.md b/aider/website/docs/config/options.md index b22caef25..d0fce88c6 100644 --- a/aider/website/docs/config/options.md +++ b/aider/website/docs/config/options.md @@ -59,9 +59,10 @@ usage: aider [-h] [--openai-api-key] [--anthropic-api-key] [--model] [--attribute-commit-message-author | --no-attribute-commit-message-author] [--attribute-commit-message-committer | --no-attribute-commit-message-committer] [--commit] [--commit-prompt] [--dry-run | --no-dry-run] - [--lint] [--lint-cmd] [--auto-lint | --no-auto-lint] - [--test-cmd] [--auto-test | --no-auto-test] [--test] - [--file] [--read] [--vim] [--chat-language] [--version] + [--skip-sanity-check-repo] [--lint] [--lint-cmd] + [--auto-lint | --no-auto-lint] [--test-cmd] + [--auto-test | --no-auto-test] [--test] [--file] + [--read] [--vim] [--chat-language] [--version] [--just-check-update] [--check-update | --no-check-update] [--install-main-branch] [--upgrade] [--apply] [--yes] @@ -455,6 +456,11 @@ Aliases: - `--dry-run` - `--no-dry-run` +### `--skip-sanity-check-repo` +Skip the sanity check for the git repository (default: False) +Default: False +Environment variable: `AIDER_SKIP_SANITY_CHECK_REPO` + ## Fixing and committing: ### `--lint`