浏览代码

Fixes contributors view

main
Eric Amodio 2 年前
父节点
当前提交
20e3a85260
共有 2 个文件被更改,包括 5 次插入5 次删除
  1. +4
    -0
      CHANGELOG.md
  2. +1
    -5
      src/env/node/git/localGitProvider.ts

+ 4
- 0
CHANGELOG.md 查看文件

@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
## [Unreleased]
### Fixed
- Fixes regression with _Contributors_ view not working
## [12.2.0] - 2022-08-30
### Added

+ 1
- 5
src/env/node/git/localGitProvider.ts 查看文件

@ -2390,11 +2390,7 @@ export class LocalGitProvider implements GitProvider, Disposable {
args.push(`--${ordering}-order`);
}
if (options?.authors?.length) {
args.push(
'--use-mailmap',
'--author',
...options.authors.map(a => `--author=^${a.name} <${a.email}>$`),
);
args.push('--use-mailmap', ...options.authors.map(a => `--author=^${a.name} <${a.email}>$`));
}
let hasMoreOverride;

正在加载...
取消
保存