-
Notifications
You must be signed in to change notification settings - Fork 892
/
Copy pathCherryPickResult.cs
52 lines (47 loc) · 1.42 KB
/
CherryPickResult.cs
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
namespace LibGit2Sharp
{
/// <summary>
/// Class to report the result of a cherry picked.
/// </summary>
public class CherryPickResult
{
/// <summary>
/// Needed for mocking purposes.
/// </summary>
protected CherryPickResult()
{ }
internal CherryPickResult(CherryPickStatus status, Commit commit = null)
{
Commit = commit;
Status = status;
}
/// <summary>
/// The resulting commit of the cherry pick.
/// <para>
/// This will return <code>null</code> if the cherry pick was not committed.
/// This can happen if:
/// 1) The cherry pick resulted in conflicts.
/// 2) The option to not commit on success is set.
/// </para>
/// </summary>
public virtual Commit Commit { get; private set; }
/// <summary>
/// The status of the cherry pick.
/// </summary>
public virtual CherryPickStatus Status { get; private set; }
}
/// <summary>
/// The status of what happened as a result of a cherry-pick.
/// </summary>
public enum CherryPickStatus
{
/// <summary>
/// The commit was successfully cherry picked.
/// </summary>
CherryPicked,
/// <summary>
/// The cherry pick resulted in conflicts.
/// </summary>
Conflicts
}
}