(f *cmdutil.Factory)
| 238 | } |
| 239 | |
| 240 | func newGitClient(f *cmdutil.Factory) *git.Client { |
| 241 | io := f.IOStreams |
| 242 | client := &git.Client{ |
| 243 | GhPath: f.ExecutablePath, |
| 244 | Stderr: io.ErrOut, |
| 245 | Stdin: io.In, |
| 246 | Stdout: io.Out, |
| 247 | } |
| 248 | return client |
| 249 | } |
| 250 | |
| 251 | func newBrowser(f *cmdutil.Factory) browser.Browser { |
| 252 | io := f.IOStreams |
no outgoing calls