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
AgeCommit message (Collapse)Author
2013-10-02reflog: move the reflog implementation into refdb_fsCarlos Martín Nieto
References and their logs are logically coupled, let's make it so in the code by moving the fs-based reflog implementation to live next to the fs-based refs one. As part of the change, make the function take names rather than references, as only the names are relevant when looking up and handling reflogs.
2013-09-24'del' instead of 'delete' for the poor C++ usersEdward Thomson
2013-06-12util: It's called `memzero`Vicent Marti
2013-06-12Merge remote-tracking branch 'arrbee/minor-paranoia' into developmentVicent Marti
2013-06-07Add safe memset and use itRussell Belfer
This adds a `git__memset` routine that will not be optimized away and updates the places where I memset() right before a free() call to use it.
2013-06-01Zero memory for major objects before freeingRussell Belfer
By zeroing out the memory when we free larger objects (i.e. those that serve as collections of other data, such as repos, odb, refdb), I'm hoping that it will be easier for libgit2 bindings to find errors in their object management code.
2013-05-30RefcountingVicent Marti
2013-05-30...Aaaand this worksVicent Marti
2013-05-30What are the chances, reallyVicent Marti
2013-05-28Liike thisVicent Marti
2013-05-11Introduce a glob-filtering iteratorCarlos Martín Nieto
If the backend doesn't provide support for it, the matching is done in refdb on top of a normal iterator.
2013-05-11refs: remove the OID/SYMBOLIC filteringCarlos Martín Nieto
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.
2013-05-11Make sure the ref iterator works in an repo without physical presenceCarlos Martín Nieto
2013-05-11refs: introduce an iteratorCarlos Martín Nieto
This allows us to get a list of reference names in a loop instead of callbacks.
2013-04-21Move git_reference__alloc to include/git2/sysRussell Belfer
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.
2013-04-21Move refdb_backend to include/git2/sysRussell Belfer
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.
2013-04-20alloc doesn't take a refdb; git_refdb_free nicely in the testsEdward Thomson
2013-04-12dec refcount on refdb instead of always freeingEdward Thomson
2013-03-07immutable references and a pluggable ref databaseEdward Thomson