| 86 | return waApi.gitStartClone ? waApi.gitStartClone(url, path, branch, token, depth) : 0; |
| 87 | } |
| 88 | static int64_t WaGitStartPull(char* path, char* branch, char* token, int force) { |
| 89 | auto& waApi = SharedWaApi(); |
| 90 | return waApi.gitStartPull ? waApi.gitStartPull(path, branch, token, force) : 0; |
| 91 | } |
| 92 | static int64_t WaGitRun(char* repoPath, char* command, char* optionsJSON) { |
| 93 | auto& waApi = SharedWaApi(); |
| 94 | return waApi.gitRun ? waApi.gitRun(repoPath, command, optionsJSON) : 0; |
no test coverage detected