GIT_ATTR_CHECK_NO_SYSTEM

Check attribute flags: controlling extended attribute behavior.

Normally, attribute checks include looking in the /etc (or system equivalent) directory for a gitattributes file. Passing this flag will cause attribute checks to ignore that file. equivalent) directory for a gitattributes file. Passing the GIT_ATTR_CHECK_NO_SYSTEM flag will cause attribute checks to ignore that file.

Passing the GIT_ATTR_CHECK_INCLUDE_HEAD flag will use attributes from a .gitattributes file in the repository at the HEAD revision.

extern (C) nothrow @nogc
enum GIT_ATTR_CHECK_NO_SYSTEM = 1 << 2;

Meta