浏览代码

Fixes parsing issue with merge commits

main
Eric Amodio 7 年前
父节点
当前提交
758d331e69
共有 1 个文件被更改,包括 7 次插入1 次删除
  1. +7
    -1
      src/git/parsers/logParser.ts

+ 7
- 1
src/git/parsers/logParser.ts 查看文件

@ -82,7 +82,13 @@ export class GitLogParser {
case 'summary':
entry.summary = lineParts.slice(1).join(' ').trim();
while (++position < lines.length) {
if (!lines[position]) break;
const next = lines[position];
if (!next) break;
if (next === 'filename ?') {
position--;
break;
}
entry.summary += `\n${lines[position]}`;
}
break;

正在加载...
取消
保存