()
| 78 | |
| 79 | |
| 80 | def reclone() -> None: |
| 81 | # Remove the temporary branch and worktree. |
| 82 | invoke_call("git", "subrepo", "clean", _SUBREPO_NAME) |
| 83 | # Force clone the repo. |
| 84 | invoke_call("git", "subrepo", "clone", "--force", _GIT_URL, _SUBREPO_NAME) |
| 85 | |
| 86 | |
| 87 | def pull() -> None: |
no test coverage detected
searching dependent graphs…