MCPcopy Index your code
hub / github.com/google/git-appraise / runGitCommandInline

Method runGitCommandInline

repository/git.go:98–100  ·  view source on GitHub ↗

Run the given git command using the same stdin, stdout, and stderr as the review tool.

(args ...string)

Source from the content-addressed store, hash-verified

96
97// Run the given git command using the same stdin, stdout, and stderr as the review tool.
98func (repo *GitRepo) runGitCommandInline(args ...string) error {
99 return repo.runGitCommandWithIO(os.Stdin, os.Stdout, os.Stderr, args...)
100}
101
102// NewGitRepo determines if the given working directory is inside of a git repository,
103// and returns the corresponding GitRepo instance if it is.

Callers 8

MergeRefMethod · 0.95
MergeAndSignRefMethod · 0.95
RebaseRefMethod · 0.95
RebaseAndSignRefMethod · 0.95
FetchMethod · 0.95
PushNotesMethod · 0.95
PushNotesAndArchiveMethod · 0.95
PushMethod · 0.95

Calls 1

runGitCommandWithIOMethod · 0.95

Tested by

no test coverage detected