(commits, branch_commits)
| 8 | from git import Commit |
| 9 | |
| 10 | def print_overview(commits, branch_commits): |
| 11 | print('----- Overview ------') |
| 12 | print('# of commits on master: %d' % len(commits)) |
| 13 | print('# of commits on branch: %d' % len(branch_commits)) |
| 14 | |
| 15 | |
| 16 | def print_commit_info(phase, idx, commit, start_time, verbose): |