(repoPath, base, head string, opts ...git.DiffNameOnlyOptions)
| 38 | } |
| 39 | |
| 40 | func (module) DiffNameOnly(repoPath, base, head string, opts ...git.DiffNameOnlyOptions) ([]string, error) { |
| 41 | return git.DiffNameOnly(repoPath, base, head, opts...) |
| 42 | } |
| 43 | |
| 44 | func (module) Log(repoPath, rev string, opts ...git.LogOptions) ([]*git.Commit, error) { |
| 45 | return git.Log(repoPath, rev, opts...) |
nothing calls this directly
no test coverage detected