summaryrefslogtreecommitdiff
path: root/src/notes.h
Commit message (Collapse)AuthorAgeFilesLines
* Introduce `git_note_author`, `git_note_committer`Edward Thomson2014-10-261-0/+3
|
* note: rename the id getter to git_note_id()Carlos Martín Nieto2014-01-241-1/+1
| | | | This was left over when we did the general switch.
* fixed minor issues with new note iteratorNico von Geyso2013-03-061-2/+0
| | | | | * fixed style issues * use new iterator functions for git_note_foreach()
* basic note iterator implementationNico von Geyso2013-03-061-0/+3
| | | | | * git_note_iterator_new() - create a new note iterator * git_note_next() - retrieves the next item of the iterator
* update copyrightsEdward Thomson2013-01-081-1/+1
|
* Add git notes APIschu2012-02-151-0/+28
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>