Skip to content

Commit 8786068

Browse files
committed
Raise Git minimum, recommended version
1 parent 6e38cf4 commit 8786068

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ What did I do to test the code and ensure quality:
1818
-
1919

2020
Has been tested on (remove any that don't apply):
21-
- GIT 2.10 and above
21+
- GIT 2.11 and above
2222
- Windows 7 and above

GitCommands/Git/GitVersion.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ public class GitVersion : IComparable<GitVersion>
1717
private static readonly GitVersion v2_9_0 = new GitVersion("2.9.0");
1818
private static readonly GitVersion v2_11_0 = new GitVersion("2.11.0");
1919
private static readonly GitVersion v2_15_2 = new GitVersion("2.15.2");
20-
private static readonly GitVersion v2_16_3 = new GitVersion("2.16.3");
20+
private static readonly GitVersion v2_18_0 = new GitVersion("2.18.0");
2121

22-
public static readonly GitVersion LastSupportedVersion = v2_9_0;
23-
public static readonly GitVersion LastRecommendedVersion = v2_16_3;
22+
public static readonly GitVersion LastSupportedVersion = v2_11_0;
23+
public static readonly GitVersion LastRecommendedVersion = v2_18_0;
2424

2525
private const string Prefix = "git version";
2626

0 commit comments

Comments
 (0)