File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,10 @@ public enum FileStatus
38
38
/// </summary>
39
39
Renamed = ( 1 << 3 ) , /* GIT_STATUS_INDEX_RENAMED */
40
40
41
- TypeChangedInIndex = ( 1 << 4 ) , /* GIT_STATUS_INDEX_TYPECHANGE */
41
+ /// <summary>
42
+ /// A change in type for a file has been promoted from the working directory to the Index. A previous version exists in the Head.
43
+ /// </summary>
44
+ StagedTypeChange = ( 1 << 4 ) , /* GIT_STATUS_INDEX_TYPECHANGE */
42
45
43
46
/// <summary>
44
47
/// New file in the working directory, unknown from the Index and the Head.
@@ -55,7 +58,10 @@ public enum FileStatus
55
58
/// </summary>
56
59
Missing = ( 1 << 9 ) , /* GIT_STATUS_WT_DELETED */
57
60
58
- TypeChangedInWorkdir = ( 1 << 10 ) ,
61
+ /// <summary>
62
+ /// The file type has been changed in the working directory. A previous version exists in the Index.
63
+ /// </summary>
64
+ TypeChanged = ( 1 << 10 ) , /* GIT_STATUS_WT_TYPECHANGE */
59
65
60
66
/// <summary>
61
67
/// The file is <see cref="Untracked"/> but its name and/or path matches an exclude pattern in a <c>gitignore</c> file.
You can’t perform that action at this time.
0 commit comments