Run the given git command using the same stdin, stdout, and stderr as the review tool.
(args ...string)
| 96 | |
| 97 | // Run the given git command using the same stdin, stdout, and stderr as the review tool. |
| 98 | func (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. |
no test coverage detected