Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Belfer <arrbee@arrbee.com>2012-02-03 06:03:43 +0400
committerRussell Belfer <arrbee@arrbee.com>2012-03-03 03:49:28 +0400
commit65b09b1deddec64fa5639e9fea10c048d31901fa (patch)
tree426f17e38fceaed529cd5e8a2b1544e469d98fb7 /include/git2.h
parentcd33323b7251e0bb15c5ee476e918859b661cc5f (diff)
Implement diff lists and formatters
This reworks the diff API to separate the steps of producing a diff descriptions from formatting the diff. This will allow us to share diff output code with the various diff creation scenarios and will allow us to implement rename detection as an optional pass that can be run on a diff list.
Diffstat (limited to 'include/git2.h')
-rw-r--r--include/git2.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/git2.h b/include/git2.h
index 5a55bb284..1711ff8be 100644
--- a/include/git2.h
+++ b/include/git2.h
@@ -30,6 +30,7 @@
#include "git2/commit.h"
#include "git2/tag.h"
#include "git2/tree.h"
+#include "git2/diff.h"
#include "git2/index.h"
#include "git2/config.h"