func()

in ci/internal/git/repo.go [57:62]


func (r *Repository) execGit(ctx context.Context, arg ...string) ([]byte, error) {
	cmd := exec.CommandContext(ctx, "git", arg...)
	cmd.Dir = r.dir

	return cmd.CombinedOutput()
}