(ctx context.Context, args ...string)
| 344 | } |
| 345 | |
| 346 | func runGit(ctx context.Context, args ...string) (string, error) { |
| 347 | out, err := exec.CommandContext(ctx, "git", args...).CombinedOutput() |
| 348 | return string(out), err |
| 349 | } |
no outgoing calls
no test coverage detected