Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Dahlby <dahlbyk@gmail.com>2012-10-27 02:02:59 +0400
committerKeith Dahlby <dahlbyk@gmail.com>2012-10-27 02:02:59 +0400
commit8197210f0bc0299fe712d8232a7aea5634b485ce (patch)
tree300bf7bbdfca89b451933b8337d766413901bf89 /LibGit2Sharp/FileStatus.cs
parentbafa05cb912ec91a2fe09efe89ac6f8627495bdb (diff)
Rename FileStatus values
Diffstat (limited to 'LibGit2Sharp/FileStatus.cs')
-rw-r--r--LibGit2Sharp/FileStatus.cs10
1 files changed, 8 insertions, 2 deletions
diff --git a/LibGit2Sharp/FileStatus.cs b/LibGit2Sharp/FileStatus.cs
index afba9565..4d663fd0 100644
--- a/LibGit2Sharp/FileStatus.cs
+++ b/LibGit2Sharp/FileStatus.cs
@@ -38,7 +38,10 @@ namespace LibGit2Sharp
/// </summary>
Renamed = (1 << 3), /* GIT_STATUS_INDEX_RENAMED */
- TypeChangedInIndex = (1 << 4), /* GIT_STATUS_INDEX_TYPECHANGE */
+ /// <summary>
+ /// A change in type for a file has been promoted from the working directory to the Index. A previous version exists in the Head.
+ /// </summary>
+ StagedTypeChange = (1 << 4), /* GIT_STATUS_INDEX_TYPECHANGE */
/// <summary>
/// New file in the working directory, unknown from the Index and the Head.
@@ -55,7 +58,10 @@ namespace LibGit2Sharp
/// </summary>
Missing = (1 << 9), /* GIT_STATUS_WT_DELETED */
- TypeChangedInWorkdir = (1 << 10),
+ /// <summary>
+ /// The file type has been changed in the working directory. A previous version exists in the Index.
+ /// </summary>
+ TypeChanged = (1 << 10), /* GIT_STATUS_WT_TYPECHANGE */
/// <summary>
/// The file is <see cref="Untracked"/> but its name and/or path matches an exclude pattern in a <c>gitignore</c> file.