소스 검색

In consideration of a future v5, update minimum git version.

John Wesley Walker III 1 년 전
부모
커밋
8926c30a30
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      src/git-command-manager.ts

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

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