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:
authorEdward Thomson <ethomson@microsoft.com>2013-12-02 20:15:27 +0400
committerEdward Thomson <ethomson@edwardthomson.com>2013-12-03 02:57:41 +0400
commit300d192f7ed45112121f2a35d5ca80a4913c7aad (patch)
treea3000995c66950ae009cd3e7f24153bf3683fb78 /src/commit.h
parent14984af6cb9906746d2c64c5df7542ecd7406b16 (diff)
Introduce git_revert to revert a single commit
Diffstat (limited to 'src/commit.h')
-rw-r--r--src/commit.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/commit.h b/src/commit.h
index d452e2975..efb080b50 100644
--- a/src/commit.h
+++ b/src/commit.h
@@ -26,6 +26,8 @@ struct git_commit {
char *message_encoding;
char *raw_message;
char *raw_header;
+
+ char *summary;
};
void git_commit__free(void *commit);