enum
Agate::AttrCheck
Overview
Flags controlling how attributes are looked up.
Defined in:
agate/attr.crEnum Members
-
IndexThenFile =
1_u32 -
Check the index first, then the working directory (default is the reverse).
-
IndexOnly =
2_u32 -
Check the index only, ignoring the working directory.
-
NoSystem =
4_u32 -
Skip the system-level gitattributes file.
-
IncludeHead =
8_u32 -
Include attributes from HEAD's .gitattributes.
-
None =
0_u32 -
All =
15_u32
Instance Method Summary
-
#include_head?
Returns
trueif this enum value containsIncludeHead -
#index_only?
Returns
trueif this enum value containsIndexOnly -
#index_then_file?
Returns
trueif this enum value containsIndexThenFile -
#no_system?
Returns
trueif this enum value containsNoSystem - #none?