MCPcopy Index your code
hub / github.com/initialcommit-com/git-sim / clone

Function clone

src/git_sim/commands.py:89–102  ·  view source on GitHub ↗
(
    url: str = typer.Argument(
        ...,
        help="The web URL or filesystem path of the Git repo to clone",
    ),
    path: str = typer.Argument(
        default=".",
        help="The web URL or filesystem path of the Git repo to clone",
    ),
)

Source from the content-addressed store, hash-verified

87
88
89def clone(
90 url: str = typer.Argument(
91 ...,
92 help="The web URL or filesystem path of the Git repo to clone",
93 ),
94 path: str = typer.Argument(
95 default=".",
96 help="The web URL or filesystem path of the Git repo to clone",
97 ),
98):
99 from git_sim.clone import Clone
100
101 scene = Clone(url=url, path=path)
102 handle_animations(scene=scene)
103
104
105def commit(

Callers

nothing calls this directly

Calls 2

CloneClass · 0.90
handle_animationsFunction · 0.70

Tested by

no test coverage detected