diff options
author | Vicent Marti <tanoku@gmail.com> | 2011-12-03 18:05:44 +0100 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2011-12-03 18:06:34 +0100 |
commit | e92386876606c734fae9d2f5bd6c80861ccfe409 (patch) | |
tree | 07be96439653415e22e3aee9adc3a4b3c117574c /include/git2/tree.h | |
parent | b4d757c0a8566937df4df9eda205ebb1fbe7aeff (diff) | |
download | libgit2-e92386876606c734fae9d2f5bd6c80861ccfe409.tar.gz |
tree: recursive diff-index
Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
Signed-off-by: Vicent Marti <tanoku@gmail.com>
# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
#
# Author: Carlos Martín Nieto <carlos@cmartin.tk>
#
# On branch development
# Your branch is ahead of 'origin/development' by 11 commits.
#
# Changes to be committed:
# (use "git reset HEAD^1 <file>..." to unstage)
#
# modified: include/git2/tree.h
# modified: src/tree.c
# modified: tests-clay/clay_main.c
# modified: tests-clay/object/tree/diff.c
#
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# 0001-remote-Cleanup-the-remotes-code.patch
# 466.patch
# 466.patch.1
# 488.patch
# Makefile
# libgit2.0.15.0.dylib
# libgit2.0.dylib
# libgit2.dylib
# libgit2_clay
# libgit2_test
# tests-clay/object/tree/
Diffstat (limited to 'include/git2/tree.h')
-rw-r--r-- | include/git2/tree.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/git2/tree.h b/include/git2/tree.h index 3ff017fb..98264662 100644 --- a/include/git2/tree.h +++ b/include/git2/tree.h @@ -347,6 +347,7 @@ typedef int (*git_tree_diff_cb)(const git_tree_diff_data *ptr, void *data); */ int git_tree_diff(git_tree *old, git_tree *newer, git_tree_diff_cb cb, void *data); +int git_tree_diff_index_recursive(git_tree *tree, git_index *index, git_tree_diff_cb cb, void *data); GIT_END_DECL #endif |