mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 10:38:59 +01:00
Enable the .. argument for git log (#188500)
* Enable the `..` argument for git log This will return the commits that the `toRef` has but the `fromRef` does not. * Use range instead
This commit is contained in:
2
extensions/git/src/api/git.d.ts
vendored
2
extensions/git/src/api/git.d.ts
vendored
@@ -129,6 +129,8 @@ export interface LogOptions {
|
||||
/** Max number of log entries to retrieve. If not specified, the default is 32. */
|
||||
readonly maxEntries?: number;
|
||||
readonly path?: string;
|
||||
/** A commit range, such as "0a47c67f0fb52dd11562af48658bc1dff1d75a38..0bb4bdea78e1db44d728fd6894720071e303304f" */
|
||||
readonly range?: string;
|
||||
}
|
||||
|
||||
export interface CommitOptions {
|
||||
|
||||
Reference in New Issue
Block a user