mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 02:58:56 +01:00
Git - add the capability to filter git log based on the author (#207169)
This commit is contained in:
@@ -1161,6 +1161,10 @@ export class Repository {
|
||||
args.push(`-n${options?.maxEntries ?? 32}`);
|
||||
}
|
||||
|
||||
if (options?.author) {
|
||||
args.push(`--author="${options.author}"`);
|
||||
}
|
||||
|
||||
if (options?.path) {
|
||||
args.push('--', options.path);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user