-
Notifications
You must be signed in to change notification settings - Fork 503
Expand file tree
/
Copy pathGitVersions.cs
More file actions
30 lines (26 loc) · 1.24 KB
/
Copy pathGitVersions.cs
File metadata and controls
30 lines (26 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
namespace SourceGit.Models
{
public static class GitVersions
{
/// <summary>
/// The minimal version of Git that required by this app.
/// </summary>
public static readonly System.Version MINIMAL = new(2, 25, 1);
/// <summary>
/// The minimal version of Git that supports the `stash push` command with the `--pathspec-from-file` option.
/// </summary>
public static readonly System.Version STASH_PUSH_WITH_PATHSPECFILE = new(2, 26, 0);
/// <summary>
/// The minimal version of Git that supports the `stash push` command with the `--staged` option.
/// </summary>
public static readonly System.Version STASH_PUSH_ONLY_STAGED = new(2, 35, 0);
/// <summary>
/// The minimal version of Git that supports the `git merge-tree --write-tree` command, which is used for testing merge results without actually performing a merge.
/// </summary>
public static readonly System.Version TESTING_MERGE = new(2, 38, 0);
/// <summary>
/// The minimal version of Git that supports the `git replay` command.
/// </summary>
public static readonly System.Version REPLAY = new(2, 44, 0);
}
}