(options)
| 456 | }); |
| 457 | }, |
| 458 | async commit(options) { |
| 459 | return commitWith({ |
| 460 | ...options, |
| 461 | fs: await fs(), |
| 462 | git: await loadGit<IsomorphicGitCommitClient>(), |
| 463 | cache, |
| 464 | defaultIdentity, |
| 465 | }); |
| 466 | }, |
| 467 | async log(options = {}) { |
| 468 | return logWith({ |
| 469 | ...options, |
nothing calls this directly
no test coverage detected