Git - commit action button (#153031)

This commit is contained in:
Ladislau Szomoru
2022-06-24 16:07:24 +02:00
committed by GitHub
parent 1a599e2d17
commit 367eefd5f1
13 changed files with 196 additions and 66 deletions

View File

@@ -129,6 +129,8 @@ export interface LogOptions {
readonly path?: string;
}
export type PostCommitCommand = 'push' | 'sync' | string;
export interface CommitOptions {
all?: boolean | 'tracked';
amend?: boolean;
@@ -139,6 +141,7 @@ export interface CommitOptions {
requireUserConfig?: boolean;
useEditor?: boolean;
verbose?: boolean;
postCommitCommand?: PostCommitCommand;
}
export interface FetchOptions {