소스 검색

Adds the current user e-mail when uncommitted

main
Eric Amodio 6 년 전
부모
커밋
6ac613961b
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. +5
    -0
      src/git/parsers/blameParser.ts

+ 5
- 0
src/git/parsers/blameParser.ts 파일 보기

@ -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(' ')

불러오는 중...
취소
저장