(repoPath, name, url string, opts ...git.RemoteAddOptions)
| 34 | type module struct{} |
| 35 | |
| 36 | func (module) RemoteAdd(repoPath, name, url string, opts ...git.RemoteAddOptions) error { |
| 37 | return git.RemoteAdd(repoPath, name, url, opts...) |
| 38 | } |
| 39 | |
| 40 | func (module) DiffNameOnly(repoPath, base, head string, opts ...git.DiffNameOnlyOptions) ([]string, error) { |
| 41 | return git.DiffNameOnly(repoPath, base, head, opts...) |