Run git log and return a list of raw subject lines (%s), newest first.
(user: str, prev_tag: str)
| 152 | |
| 153 | |
| 154 | def get_gitlog_lines(user: str, prev_tag: str): |
| 155 | """ |
| 156 | Run git log and return a list of raw subject lines (%s), newest first. |
| 157 | """ |
| 158 | output = run('git log --author=' + user + ' --oneline --no-merges --pretty=format:"%s" ' + prev_tag + '..') |
| 159 | return list(filter(None, output.split("\n"))) |
| 160 | |
| 161 | |
| 162 | def parse_gitlog_lines(lines, author: str): |