]> git.proxmox.com Git - libgit2.git/commit - src/notes.h
Add git notes API
authorschu <schu-github@schulog.org>
Tue, 14 Feb 2012 23:33:38 +0000 (00:33 +0100)
committerschu <schu-github@schulog.org>
Wed, 15 Feb 2012 19:32:14 +0000 (20:32 +0100)
commitbf477ed4a86d4183f7e38e4667a1f623270bf5d2
treea3a4752971f2f8e031e78c78e48f5d142e7210ea
parent905919e63b7b4357ca75ef5e8bfeca7485428dc9
Add git notes API

This commit adds basic git notes support to libgit2, namely:

* git_note_read
* git_note_message
* git_note_oid
* git_note_create
* git_note_remove

In the long run, we probably want to provide some convenience callback
mechanism for merging and moving (filter-branch) notes.

Signed-off-by: schu <schu-github@schulog.org>
include/git2.h
include/git2/notes.h [new file with mode: 0644]
include/git2/types.h
src/notes.c [new file with mode: 0644]
src/notes.h [new file with mode: 0644]
tests-clar/notes/notes.c [new file with mode: 0644]