(commit_hash)
| 47 | |
| 48 | |
| 49 | def commit_body(commit_hash): |
| 50 | cmd = f"git log -n 1 --pretty=format:%b {commit_hash}" |
| 51 | ret, out, err = run(cmd) |
| 52 | return out if ret == 0 else None |
| 53 | |
| 54 | |
| 55 | def commit_title(commit_hash): |
no test coverage detected
searching dependent graphs…