feat: add software team tool lib

This commit is contained in:
莘权 马 2024-03-20 11:20:04 +08:00
parent 155a5a8c65
commit a994716eb2
3 changed files with 58 additions and 3 deletions

View file

@ -82,8 +82,6 @@ class Context(BaseModel):
def set_repo_dir(self, path: str | Path):
repo_path = Path(path)
if not repo_path.exists():
return
self.git_repo = GitRepository(local_path=repo_path, auto_init=True)
self.repo = ProjectRepo(self.git_repo)