forked from libgit2/libgit2sharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStashApplyProgress.cs
48 lines (41 loc) · 1.14 KB
/
StashApplyProgress.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
namespace LibGit2Sharp
{
/// <summary>
/// The current progress of the stash application.
/// </summary>
public enum StashApplyProgress
{
/// <summary>
/// Not passed by the callback. Used as dummy value.
/// </summary>
None = 0,
/// <summary>
/// Loading the stashed data from the object database.
/// </summary>
LoadingStash,
/// <summary>
/// The stored index is being analyzed.
/// </summary>
AnalyzeIndex,
/// <summary>
/// The modified files are being analyzed.
/// </summary>
AnalyzeModified,
/// <summary>
/// The untracked and ignored files are being analyzed.
/// </summary>
AnalyzeUntracked,
/// <summary>
/// The untracked files are being written to disk.
/// </summary>
CheckoutUntracked,
/// <summary>
/// The modified files are being written to disk.
/// </summary>
CheckoutModified,
/// <summary>
/// The stash was applied successfully.
/// </summary>
Done,
}
}