aboutsummaryrefslogtreecommitdiffstats
path: root/commit.go
Commit message (Collapse)AuthorAgeFilesLines
* Fix commit.File() gorutine leakAlberto Cortés2016-01-211-10/+1
| | | | | | | | | | | | Commit.File() was leaking a goroutine because it was looping over an iterator without closing its channel. Now commit.File() calls the new Tree.File() method that searches the file in the repository by trasversing the dir tree instead of using the tree.Files() iterator. This not only prevent the goroutine leak, but also speeds up file searching.
* blame code reorganization, and mutting the testMáximo Cuadros2015-12-121-0/+23
|
* fix PR#7 commentsAlberto Cortés2015-12-041-0/+16
|
* Blame support for filesAlberto Cortés2015-11-251-0/+5
| | | | | | | | This also includes a diff package and revlist package (needed by blame) Some extra packfiles (<1MB) are also included, to be used as fixtures in the tests.
* iters: add IsClosed field, fixes #4Máximo Cuadros2015-11-171-1/+12
|
* internal -> coreMáximo Cuadros2015-10-311-12/+14
|
* tree and commitMáximo Cuadros2015-10-271-0/+127