Răsfoiți Sursa

Update git-command-manager.ts

John Wesley Walker III 1 an în urmă
părinte
comite
db715dc5a4
1 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  1. 2 2
      src/git-command-manager.ts

+ 2 - 2
src/git-command-manager.ts

@@ -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>