Run git command using depot_tools.
(command_line, working_dir)
| 975 | |
| 976 | |
| 977 | def run_git(command_line, working_dir): |
| 978 | """Run git command using depot_tools.""" |
| 979 | return run_command("git %s" % command_line, working_dir) |
| 980 | |
| 981 | |
| 982 | def run_automate_git(): |
no test coverage detected