Przeglądaj źródła

Adds the current user e-mail when uncommitted

main
Eric Amodio 6 lat temu
rodzic
commit
6ac613961b
1 zmienionych plików z 5 dodań i 0 usunięć
  1. +5
    -0
      src/git/parsers/blameParser.ts

+ 5
- 0
src/git/parsers/blameParser.ts Wyświetl plik

@ -73,6 +73,11 @@ export class GitBlameParser {
break;
case 'author-mail':
if (Git.isUncommitted(entry.sha)) {
entry.authorEmail = currentUser !== undefined ? currentUser.email : undefined;
continue;
}
entry.authorEmail = lineParts
.slice(1)
.join(' ')

Ładowanie…
Anuluj
Zapisz