summaryrefslogtreecommitdiff
path: root/repository.go
AgeCommit message (Collapse)Author
2013-11-14Fix memleak, free TreeBuilderArtiom Di
2013-11-14Don't repeat the pkg-config lineCarlos Martín Nieto
This is only needed once per package. Having it on every file makes the build system ask about it n times, which is silly.
2013-09-12Camel-case constantsCarlos Martín Nieto
Make the names look more like what you'd expect from Go.
2013-06-13Merge pull request #13 from libgit2/polymorphism-take-2Vicent Martí
My take on polymorphism
2013-04-26Wrap git_repository_is_bareAxel Wagner
2013-04-16Add @carlosmn's testsVicent Marti
2013-04-16Take 2 on polymorphismVicent Marti
2013-03-19Implement SetWorkdirAxel Wagner
2013-03-07Delete the whole test dirCarlos Martín Nieto
2013-03-07Wrap immutable refsCarlos Martín Nieto
2013-03-06Add a couple of missing methods around BlobCarlos Martín Nieto
2013-03-06Sane names yoVicent Marti
2013-03-06Repository.PathVicent Marti
2013-03-06Repository.CreateCommitVicent Marti
2013-03-06Wrap git_indexCarlos Martín Nieto
2013-03-06Free Git objects via finalizers or manuallyCarlos Martín Nieto
Provide a manual way of freeing objects, but set finalizers for them in case the user does not want to worry about memory management, which would be useful for commits or trees, which sare typically small. When the objects are freed manually, the finalizer is unset to avoid double-freeing, mimicking what the go runtime does.
2013-03-05Bring back the RevWalkCarlos Martín Nieto
2013-03-05Initial commitVicent Marti