diff --git a/aider/main.py b/aider/main.py index e6b417250..cc666c900 100644 --- a/aider/main.py +++ b/aider/main.py @@ -54,7 +54,7 @@ def setup_git(git_root, io): repo = None if git_root: repo = git.Repo(git_root) - elif io.confirm_ask("No git repo found, create one to track GPT's changes (recommended)?"): + elif io.confirm_ask("No git repo found, create one to track aider's changes (recommended)?"): git_root = str(Path.cwd().resolve()) repo = git.Repo.init(git_root) io.tool_output("Git repository created in the current working directory.")