소스 검색

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;

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