mirror of
https://github.com/go-gitea/gitea.git
synced 2025-10-03 15:26:29 +00:00
16 lines
364 B
Go
16 lines
364 B
Go
// Copyright 2025 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package gitrepo
|
|
|
|
import (
|
|
"context"
|
|
|
|
"code.gitea.io/gitea/modules/git/gitcmd"
|
|
)
|
|
|
|
func runCmdString(ctx context.Context, repo Repository, cmd *gitcmd.Command) (string, error) {
|
|
res, _, err := cmd.RunStdString(ctx, &gitcmd.RunOpts{Dir: repoPath(repo)})
|
|
return res, err
|
|
}
|