Issue Type: Feature Request
Hi,
I'm working on supporting rich reviews in live share collaboration session. To support that, we'd need the following APIs:
Repository.getGlobalConfig(key: string): Promise<string>
Repository.getLog(options?: GitLogOptions): Promise<Commit>
Repository.diffWorkingDirectoryWith(ref: string): Promise<Change[]>
- Add
interface GitLogOptions { readonly maxEntries?: number; }
- Add
readonly authorEmail?: string | undefined; to Commit interface.
I have changes ready and can submit a PR if you accept this feature request.