Searched defs:gitCmd (Results 1 – 1 of 1) sorted by relevance
/aosp_15_r20/tools/treble/build/treble_build/local/ |
H A D | git.go | 212 type gitCmd struct { struct 213 cmd string // GIT executable 214 timeout time.Duration // Timeout for commands 218 …nDirCmd(ctx context.Context, gitDir string, workDir string, args []string) (*bytes.Buffer, error) { 227 func (git *gitCmd) ProjectInfo(ctx context.Context, gitDir, workDir string) (*bytes.Buffer, error) { 230 …it *gitCmd) RemoteUrl(ctx context.Context, gitDir, workDir, remote string) (*bytes.Buffer, error) { 233 … (git *gitCmd) Tree(ctx context.Context, gitDir, workDir, revision string) (*bytes.Buffer, error) { 237 …(git *gitCmd) CommitInfo(ctx context.Context, gitDir, workDir, sha string) (*bytes.Buffer, error) { 241 …) DiffBranches(ctx context.Context, gitDir, workDir, upstream, sha string) (*bytes.Buffer, error) {
|