浏览代码

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

正在加载...
取消
保存