Skip to content

Commit cb82a8e

Browse files
committed
Merge branch 'feat/git-server-test-teardown-win' into feat/git-server-recursion-crash
2 parents b3fe230 + 8fa1014 commit cb82a8e

3 files changed

Lines changed: 150 additions & 84 deletions

File tree

src/git/src/mcp_server_git/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import sys
55
from .server import serve
66

7+
78
@click.command()
89
@click.option("--repository", "-r", type=Path, help="Git repository path")
910
@click.option("-v", "--verbose", count=True)
@@ -20,5 +21,6 @@ def main(repository: Path | None, verbose: bool) -> None:
2021
logging.basicConfig(level=logging_level, stream=sys.stderr)
2122
asyncio.run(serve(repository))
2223

24+
2325
if __name__ == "__main__":
2426
main()

0 commit comments

Comments
 (0)