Converts this directory to a local git repository
(self)
| 4309 | """A directory.""" |
| 4310 | |
| 4311 | def as_git(self) -> "GitRepository": |
| 4312 | """Converts this directory to a local git repository""" |
| 4313 | _args: list[Arg] = [] |
| 4314 | _ctx = self._select("asGit", _args) |
| 4315 | return GitRepository(_ctx) |
| 4316 | |
| 4317 | def as_module( |
| 4318 | self, |
nothing calls this directly
no test coverage detected