(commit_hash)
| 53 | |
| 54 | |
| 55 | def commit_title(commit_hash): |
| 56 | cmd = f"git log -n 1 --pretty=format:%s {commit_hash}" |
| 57 | ret, out, err = run(cmd) |
| 58 | return out if ret == 0 else None |
| 59 | |
| 60 | |
| 61 | def commit_files_changed(commit_hash): |
no test coverage detected
searching dependent graphs…