libgit2

git_diff_tree_to_tree

Version:

Create a diff list with the difference between two tree objects.

This is equivalent to git diff <old -tree> <new -tree>

The first tree will be used for the "old_file" side of the delta and the second tree will be used for the "new_file" side of the delta.

Signature

int git_diff_tree_to_tree(git_diff_list **diff, git_repository *repo, git_tree *old_tree, git_tree *new_tree, const git_diff_options *opts);

Parameters

In
diff

Output pointer to a git_diff_list pointer to be allocated.

In
repo

The repository containing the trees.

In
old_tree

A git_tree object to diff from.

In
new_tree

A git_tree object to diff to.

In
opts

Structure with options to influence diff or NULL for defaults.

Returns

int

Versions