Kaynağa Gözat

Fixes parsing issue with merge commits

main
Eric Amodio 7 yıl önce
ebeveyn
işleme
758d331e69
1 değiştirilmiş dosya ile 7 ekleme ve 1 silme
  1. +7
    -1
      src/git/parsers/logParser.ts

+ 7
- 1
src/git/parsers/logParser.ts Dosyayı Görüntüle

@ -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;

Yükleniyor…
İptal
Kaydet