diff options
author | Edward Thomson <ethomson@edwardthomson.com> | 2014-07-21 10:47:01 -0400 |
---|---|---|
committer | Edward Thomson <ethomson@microsoft.com> | 2014-10-26 22:59:29 -0400 |
commit | bad4937ea50a8874598171c7ccb3d3443f1daf7b (patch) | |
tree | fddf82c84fd56243ddf1678b4394eddc05651c09 /src/notes.h | |
parent | a612a25fa673447e874407fd2d9501998885d392 (diff) | |
download | libgit2-bad4937ea50a8874598171c7ccb3d3443f1daf7b.tar.gz |
Introduce `git_note_author`, `git_note_committer`
Diffstat (limited to 'src/notes.h')
-rw-r--r-- | src/notes.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/notes.h b/src/notes.h index e9cfa00fa..cfc0ca239 100644 --- a/src/notes.h +++ b/src/notes.h @@ -23,6 +23,9 @@ struct git_note { git_oid id; + git_signature *author; + git_signature *committer; + char *message; }; |