Summary
This enum is used by
Include
to specify what kind of
status codes to include.
- Assembly
- Mercurial
.Net .dll - Namespace
- Mercurial
- Interfaces
-
- IComparable
- IFormattable
- IConvertible
- Base Types
-
- object
- ValueType
- Enum
graph TD
Base0["Enum"]-->Type
Base1["ValueType"]-->Base0
Base2["object"]-->Base1
Interface0["IComparable"]-.->Type
Interface1["IFormattable"]-.->Type
Interface2["IConvertible"]-.->Type
Type["FileStatusIncludes"]
class Type type-node
Syntax
public enum FileStatusIncludes
Attributes
Type | Description |
---|---|
FlagsAttribute |
Fields
Name | Constant Value | Summary |
---|---|---|
Added | 2 |
Include only files that have been added (that has the status code 'A'.)
static
|
All | 127 |
Include all states.
static
|
Clean | 16 |
Include only clean files without changes (that has the status code 'C'.)
static
|
Default | 47 |
The default inclusion options, which is everything except ignored and clean (unmodified) files.
static
|
Ignored | 64 |
Include only ignored files (that has the status code 'I'.)
static
|
Missing | 8 |
Include only files that are missing (that has the status code '!', which means the
file is missing on disk, but Mercurial has not been told to remove/forget the file.)
static
|
Modified | 1 |
Include only files that have been modified (that has the status code 'M'.)
static
|
Removed | 4 |
Include only files that have been removed (that has the status code 'R'.)
static
|
Unknown | 32 |
Include only unknown files (that has the status code '?', which means the
file is on disk, but Mercurial has not been told to ignore it nor track it.)
static
|