(commit_hash)
| 162 | |
| 163 | |
| 164 | def commit_title(commit_hash): |
| 165 | cmd = f"git log -n 1 --pretty=format:%s {commit_hash}" |
| 166 | ret, out, err = run(cmd) |
| 167 | return out if ret == 0 else None |
| 168 | |
| 169 | |
| 170 | def commit_files_changed(commit_hash): |
no test coverage detected
searching dependent graphs…