(repoPath, rev string, opts ...git.LogOptions)
| 42 | } |
| 43 | |
| 44 | func (module) Log(repoPath, rev string, opts ...git.LogOptions) ([]*git.Commit, error) { |
| 45 | return git.Log(repoPath, rev, opts...) |
| 46 | } |
| 47 | |
| 48 | func (module) MergeBase(repoPath, base, head string, opts ...git.MergeBaseOptions) (string, error) { |
| 49 | return git.MergeBase(repoPath, base, head, opts...) |