summaryrefslogtreecommitdiff
path: root/include/git2/sys
Commit message (Collapse)AuthorAgeFilesLines
...
| * refs: remove the OID/SYMBOLIC filteringCarlos Martín Nieto2013-05-111-24/+7
| | | | | | | | | | | | | | | | | | Nobody should ever be using anything other than ALL at this level, so remove the option altogether. As part of this, git_reference_foreach_glob is now implemented in the frontend using an iterator. Backends will later regain the ability of doing the glob filtering in the backend.
| * refs: introduce an iteratorCarlos Martín Nieto2013-05-111-0/+35
| | | | | | | | This allows us to get a list of reference names in a loop instead of callbacks.
* | commit: make create_from_oids() accept plain oidnulltoken2013-05-051-2/+3
|/
* move NAME and REUC extensions to sys/Edward Thomson2013-04-301-0/+180
|
* repo: Add `git_repository__cleanup`Vicent Marti2013-04-241-0/+14
|
* Move git_reference__alloc to include/git2/sysRussell Belfer2013-04-212-13/+61
| | | | | | Create a new include/git2/sys/refs.h and move the reference alloc functions there. Also fix some documentation issues and some minor code cleanups.
* Move refdb_backend to include/git2/sysRussell Belfer2013-04-211-0/+120
| | | | | | | | | This moves most of the refdb stuff over to the include/git2/sys directory, with some minor shifts in function organization. While I was making the necessary updates, I also removed the trailing whitespace in a few files that I modified just because I was there and it was bugging me.
* Move git_commit_create_from_oids into sys/commit.hRussell Belfer2013-04-211-0/+45
| | | | | | | | Actually this renames git_commit_create_oid to git_commit_create_from_oids and moves the API declaration to include/git2/sys/commit.h since it is a dangerous API for general use (because it doesn't check that the OID list items actually refer to real objects).
* Move some low-level repo fns to include/git2/sysRussell Belfer2013-04-211-0/+92
|
* Move odb_backend implementors stuff into git2/sysRussell Belfer2013-04-212-2/+89
| | | | | | | | | | | | This moves some of the odb_backend stuff that is related to the internals of an odb_backend implementation into include/git2/sys. Some of the stuff related to streaming I left in include/git2 because it seemed like it would be reasonably needed by a normal user who wanted to stream objects into and out of the ODB. Also, I added APIs for traversing the list of backends so that some of the tests would not need to access ODB internals.
* Move git_config_backend to include/git2/sysRussell Belfer2013-04-211-0/+70
Moving backend implementor objects into include/git2/sys so the APIs can be isolated from the ones that normal libgit2 users would be likely to use.