(args ...string)
| 222 | } |
| 223 | |
| 224 | func gitSimple(args ...string) (string, error) { |
| 225 | return subprocess.SimpleExec("git", args...) |
| 226 | } |
| 227 | |
| 228 | func gitBuffered(args ...string) (*subprocess.BufferedCmd, error) { |
| 229 | return subprocess.BufferedExec("git", args...) |
no test coverage detected