mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 16:54:59 +00:00
WIP: Fix GitPython issue with GitDB in coder.py.
This commit is contained in:
parent
e72ea5f2f0
commit
97cf30b0f0
1 changed files with 2 additions and 1 deletions
|
@ -80,7 +80,8 @@ class Coder:
|
|||
self.console.print("[red bold]Files are in different git repos.")
|
||||
return
|
||||
|
||||
repo = git.Repo(repo_paths.pop())
|
||||
# https://github.com/gitpython-developers/GitPython/issues/427
|
||||
repo = git.Repo(repo_paths.pop(), odbt=git.GitDB)
|
||||
|
||||
new_files = []
|
||||
for fname in self.fnames:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue