git2go's git.Patch or libgit2's git_patch returns a String value of the following format:
"diff": "diff --git a/test b/test
index 9daeafb..dced80a 100644
--- a/test
+++ b/test
@@ -1 +1,3 @@
test
+
+test"
Notice that index 9daeafb..dced80a 100644
is not the full index. Is there anyway using libgit2 / git2go to return the full index? i.e. the equivalence of running git diff --full-index
?