0
1
Fork 0

Update git-command-manager.ts

This commit is contained in:
John Wesley Walker III 2024-03-12 14:28:10 +01:00 committed by GitHub
parent 8926c30a30
commit db715dc5a4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -11,8 +11,8 @@ import {GitVersion} from './git-version'
// Auth header not supported before 2.9
// Wire protocol v2 not supported before 2.18
// sparse-checkout not supported before 2.27
export const MinimumGitVersion = new GitVersion('2.27')
// sparse-checkout not supported before 2.25
export const MinimumGitVersion = new GitVersion('2.25')
export interface IGitCommandManager {
branchDelete(remote: boolean, branch: string): Promise<void>