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:
Eric Amodio
2017-03-19 00:36:51 -04:00
parent 14eebbba15
commit ef74ae0950
19 changed files with 556 additions and 407 deletions

View File

@@ -87,9 +87,9 @@ export class GitUri extends Uri {
}
export interface IGitCommitInfo {
sha: string;
repoPath: string;
fileName: string;
repoPath: string;
sha?: string;
originalFileName?: string;
}