(args ...string)
| 226 | } |
| 227 | |
| 228 | func gitBuffered(args ...string) (*subprocess.BufferedCmd, error) { |
| 229 | return subprocess.BufferedExec("git", args...) |
| 230 | } |
| 231 | |
| 232 | func gitBufferedStdout(args ...string) (*subprocess.BufferedCmd, error) { |
| 233 | return subprocess.StdoutBufferedExec("git", args...) |
nothing calls this directly
no test coverage detected