git_merge_file_input

The file inputs to git_merge_file. Callers should populate the git_merge_file_input structure with descriptions of the files in each side of the conflict for use in producing the merge file.

extern (C) nothrow @nogc
struct git_merge_file_input {}

Members

Variables

mode
uint mode;

File mode of the conflicted file, or 0 to not merge the mode.

path
const(char)* path;

File name of the conflicted file, or null to not merge the path.

ptr_
const(char)* ptr_;

Pointer to the contents of the file.

size
size_t size;

Size of the contents pointed to in ptr_.

version_
uint version_;
Undocumented in source.

Meta