Show version on startup

This commit is contained in:
Paul Gauthier 2023-07-11 18:44:28 -07:00
parent aab636f4e9
commit c54740c617

View file

@ -293,6 +293,8 @@ def main(args=None, input=None, output=None):
dry_run=args.dry_run,
)
io.tool_output(f"Aider v{__version__}")
if not git_root and args.git:
if io.confirm_ask("No git repo found, create one to track GPT's changes (recommended)?"):
repo = git.Repo.init(os.getcwd())