Переглянути джерело

Adds stats to file log if possible

main
Eric Amodio 2 роки тому
джерело
коміт
909719d815
1 змінених файлів з 10 додано та 1 видалено
  1. +10
    -1
      src/premium/github/githubGitProvider.ts

+ 10
- 1
src/premium/github/githubGitProvider.ts Переглянути файл

@ -1605,7 +1605,16 @@ export class GitHubGitProvider implements GitProvider, Disposable {
const foundFile = isFolderGlob(relativePath)
? undefined
: files?.find(f => f.path === relativePath) ??
new GitFileChange(repoPath, relativePath, GitFileIndexStatus.Modified);
new GitFileChange(
repoPath,
relativePath,
GitFileIndexStatus.Modified,
undefined,
undefined,
commit.changedFiles === 1
? { additions: commit.additions ?? 0, deletions: commit.deletions ?? 0, changes: 0 }
: undefined,
);
c = new GitCommit(
this.container,

Завантаження…
Відмінити
Зберегти