(args)
| 22 | |
| 23 | |
| 24 | def git_exec(args): |
| 25 | p = Popen(" ".join(["git"] + args), shell=True, stdout=PIPE, stderr=PIPE) |
| 26 | out, err = p.communicate() |
| 27 | return out.decode('utf-8') |
| 28 | |
| 29 | |
| 30 | def git_log(args): |
no outgoing calls
no test coverage detected
searching dependent graphs…