summaryrefslogtreecommitdiff
path: root/include/git2/tree.h
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2011-12-03 18:05:44 +0100
committerVicent Marti <tanoku@gmail.com>2011-12-03 18:06:34 +0100
commite92386876606c734fae9d2f5bd6c80861ccfe409 (patch)
tree07be96439653415e22e3aee9adc3a4b3c117574c /include/git2/tree.h
parentb4d757c0a8566937df4df9eda205ebb1fbe7aeff (diff)
downloadlibgit2-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.h1
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