This commit is contained in:
Paul Gauthier 2024-08-27 11:21:59 -07:00
parent 2b2569b787
commit 64c8bd06e1

View file

@ -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.")