summaryrefslogtreecommitdiff
path: root/index.go
AgeCommit message (Collapse)Author
2015-06-08Update to libgit2 b6011e29Carlos Martín Nieto
2015-05-22handles: panic when we cannot retrieve handle dataPatrick Steinhardt
2015-05-22index: use HandleList for C function callbacks.Patrick Steinhardt
2015-05-19Index: Add Path() accessorCarlos Martín Nieto
2015-05-19Index: Add OpenIndexCarlos Martín Nieto
This lets you persist an index at an arbitrary location.
2015-05-19Index: Add ReadTree()Carlos Martín Nieto
2015-03-23Add a FIXME.Mark Probst
2014-12-11Remove useless includesCarlos Martín Nieto
2014-10-25Merge pull request #125 from lucas-clemente/masterCarlos Martín Nieto
implemented Index.AddAll as git_index_add_all wrapper
2014-10-24implemented Index.AddAll, Index.RemoveAll, Index.UpdateAllLucas Clemente
2014-10-20Use Filemode type in TreeEntry and IndexEntryRyan Dahl
Fixes #121
2014-09-07add Index#RemoveByPath.Daniel Kertesz
2014-05-25Index: add functions to handle the data structureCarlos Martín Nieto
Index is not just the index file
2014-04-02make it possible to handle errorsJesse Ezell
2014-03-30add conflict functionsJesse Ezell
2014-03-20Add index WriteTreeTo + testJesse Ezell
2014-02-26Convert the rest of the errorsCarlos Martín Nieto
2014-02-26Added git error code to the error object.Jesper Hansen
2014-02-26Merge branch 'index-entries'Carlos Martín Nieto
2014-02-26Adjust to oid -> idCarlos Martín Nieto
2014-02-26Remove pointer to git_index_entryCarlos Martín Nieto
We have all the data
2014-01-24added write methodTobias Haar
2013-12-18Lock the OS thread when acessing errorsCarlos Martín Nieto
The library stores error information in thread-local storage, which means we need to make sure that the Go runtime doesn't switch OS threads between the time we call a function and th time we attempt to retrieve the error information.
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-05-22Support for index-entriesAxel Wagner
2013-03-06Wrap git_indexCarlos Martín Nieto