From 8926c30a300957ac926a8e063bdd0f6454163b5c Mon Sep 17 00:00:00 2001
From: John Wesley Walker III <81404201+jww3@users.noreply.github.com>
Date: Tue, 12 Mar 2024 14:16:35 +0100
Subject: [PATCH] In consideration of a future v5, update minimum git version.

---
 src/git-command-manager.ts | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/git-command-manager.ts b/src/git-command-manager.ts
index 0f3fd25..f4cb01c 100644
--- a/src/git-command-manager.ts
+++ b/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>