From 181062dc06c54e40cd8d6b98ae46c5ee2ba489a3 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Fri, 7 Jul 2023 11:12:36 -0700 Subject: [PATCH] confirm_ask --- aider/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/main.py b/aider/main.py index c10900fae..5d3f19786 100644 --- a/aider/main.py +++ b/aider/main.py @@ -261,7 +261,7 @@ def main(args=None, input=None, output=None): ) if not git_root: - if io.ask_confirm("Create git repo (recommended)?"): + if io.confirm_ask("No git repo found, create one to track GPT's changes (recommended)?"): git.Repo.init(os.getcwd()) io.tool_output("Git repository created in the current working directory.")