Git - Add setting to remember post commit command (#158449)

This commit is contained in:
Ladislau Szomoru
2022-08-22 12:34:47 +02:00
committed by GitHub
parent 45d2dd8c54
commit 3cfc74c52e
10 changed files with 229 additions and 116 deletions

View File

@@ -254,8 +254,10 @@ export interface CredentialsProvider {
getCredentials(host: Uri): ProviderResult<Credentials>;
}
export type CommitCommand = Command & { description?: string };
export interface PostCommitCommandsProvider {
getCommands(repository: Repository): Command[];
getCommands(repository: Repository): CommitCommand[];
}
export interface PushErrorHandler {