mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-02-12 19:18:32 -05:00
Refactors git models & parsers
Adds full git status parsing Adds git status info into status quick pick Switches to async/await in file blame/log
This commit is contained in:
14
src/git/models/log.ts
Normal file
14
src/git/models/log.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
'use strict';
|
||||
import { Range } from 'vscode';
|
||||
import { IGitAuthor } from './commit';
|
||||
import { GitLogCommit } from './logCommit';
|
||||
|
||||
export interface IGitLog {
|
||||
repoPath: string;
|
||||
authors: Map<string, IGitAuthor>;
|
||||
commits: Map<string, GitLogCommit>;
|
||||
|
||||
maxCount: number | undefined;
|
||||
range: Range;
|
||||
truncated: boolean;
|
||||
}
|
||||
Reference in New Issue
Block a user