libgit2

GIT_IDXENTRY_INTENT_TO_ADD

Version:

Bitmasks for on-disk fields of git_index_entry's flags_extended In memory, the flags_extended fields are divided into two parts: the fields that are read from and written to disk, and other fields that in-memory only and used by libgit2. Only the flags in GIT_IDXENTRY_EXTENDED_FLAGS will get saved on-disk. These bitmasks match the three fields in the git_index_entry flags_extended value that belong on disk. You can use them to interpret the data in the flags_extended.

Signature

#define GIT_IDXENTRY_INTENT_TO_ADD (1 << 13)

Versions