feat: add model switching tip and sort git repos

This commit is contained in:
Paul Gauthier 2024-08-28 15:33:41 -07:00 committed by Paul Gauthier (aider)
parent 6f09f651a1
commit 380f019c0d
2 changed files with 2 additions and 1 deletions

View file

@ -24,7 +24,7 @@ from .dump import dump # noqa: F401
def setup_git_home(io):
home = Path.home()
git_repos = list(home.glob("*/.git"))
git_repos = sorted(home.glob("*/.git"))
git_root = None
if git_repos: