namespace LibGit2Sharp { /// /// The kind of changes that a Diff can report. /// public enum ChangeKind { /// /// No changes detected. /// Unmodified = 0, /// /// The file was added. /// Added = 1, /// /// The file was deleted. /// Deleted = 2, /// /// The file content was modified. /// Modified = 3, /// /// The file was renamed. /// Renamed = 4, /// /// The file was copied. /// Copied = 5, /// /// The file is ignored in the workdir. /// Ignored = 6, /// /// The file is untracked in the workdir. /// Untracked = 7, /// /// The type (i.e. regular file, symlink, submodule, ...) /// of the file was changed. /// TypeChanged = 8, } }