git_diff_binary

Structure describing the binary contents of a diff.

Members

Variables

contains_data
uint contains_data;

Whether there is data in this binary structure or not. If this is 1, then this was produced and included binary content. If this is 0 then this was generated knowing only that a binary file changed but without providing the data, probably from a patch that said Binary files a/file.txt and b/file.txt differ.

new_file
.git_diff_binary_file new_file;

The contents of the new file.

old_file
.git_diff_binary_file old_file;

The contents of the old file.

Meta