summaryrefslogtreecommitdiff
path: root/src/commit.c
Commit message (Expand)AuthorAgeFilesLines
* Fix headers for the new Revision WalkerVicent Marti2011-03-161-1/+0
* Fix the retarded object interdependency systemVicent Marti2011-03-141-130/+72
* Fix segmentation fault when freeing a repositoryVicent Marti2011-03-051-8/+8
* Fix several issues with refcountingVicent Marti2011-03-031-8/+19
* Implement reference counting for git_objectsVicent Marti2011-03-031-1/+21
* Fix searching in git_vectorVicent Marti2011-03-031-1/+1
* Change the object creation/lookup APIVicent Marti2011-03-031-2/+2
* Fixed a bug with the way commits are writtenJohn Wiegley2011-02-011-2/+4
* Fixed memory leak in git_commit__free().Robert G. Jakabosky2011-01-081-0/+1
* Rename 'git_person' to 'git_signature'Vicent Marti2010-12-181-44/+27
* Added timezone offset parsing and outputting.nulltoken2010-12-101-4/+18
* Set short message when changing a commit's messagev0.2.0Vicent Marti2010-12-071-3/+13
* Change the library include fileVicent Marti2010-12-061-3/+3
* Change include structure for the projectVicent Marti2010-12-061-1/+1
* Small source code readability improvements.nulltoken2010-12-051-9/+9
* Commit parents now use the common 'vector' codeVicent Marti2010-12-021-53/+20
* add git_commit_parent to retrieve a parent by indexJustin Love2010-11-301-0/+14
* add git_commit_parentcountJustin Love2010-11-301-0/+15
* Fix compiler warning in commit.cColin Timmermans2010-11-071-1/+1
* Fix parsing of commits that have no newlines in the message.Colin Timmermans2010-11-071-3/+4
* Update commit_time along with committer.Dave Borowitz2010-11-051-2/+1
* Improve error handlingVicent Marti2010-11-051-26/+17
* Fix in-memory commit getters trying to parseVicent Marti2010-10-311-2/+5
* Do a full parse on commits before modifying themVicent Marti2010-10-291-0/+12
* Fix internal memory management on the libraryVicent Marti2010-10-281-164/+68
* Add support for in-memory objectsVicent Marti2010-09-201-1/+6
* Add setter methods & write support for git_commitVicent Marti2010-09-201-69/+139
* Give object structures more descriptive namesVicent Marti2010-09-191-3/+3
* Add generic methods for object writebackVicent Marti2010-09-181-2/+2
* Fix object handling in git_repositoryVicent Marti2010-08-121-20/+5
* Redesigned the walking/object lookup interfaceVicent Marti2010-08-121-267/+28
* Refactor parsing methodsVicent Marti2010-08-071-13/+13
* Add parsing of tree file contents.Vicent Marti2010-07-151-0/+1
* Add external API to access detailed commit attributesVicent Marti2010-07-151-37/+206
* Add support for tree objects in revision poolsVicent Marti2010-07-151-1/+2
* Changed revpool's object table to support arbitrary objectsVicent Marti2010-07-151-2/+9
* Fixed memory leaks in test suiteVicent Marti2010-07-101-1/+1
* Style: Do not use (C99) // commentsRamsay Jones2010-06-021-2/+2
* Style: Fix brace placement and spacingRamsay Jones2010-06-021-2/+1
* Fix inconsistent definition of off_t on LinuxRamsay Jones2010-06-021-2/+0
* Fix sparse warnings: "Using plain integer as NULL pointer"Ramsay Jones2010-06-021-3/+3
* msvc: Fix a "declaration after statement" compilation errorRamsay Jones2010-06-021-1/+3
* Improved error handling on auxilirary functions.Vicent Marti2010-06-021-12/+13
* Added new error codes. Improved error handling.Vicent Marti2010-06-021-18/+20
* Fixed brace placement and converted spaces to tabs.Vicent Marti2010-06-021-235/+222
* Fixed topological commit sorting (no longerd reversed) and commit timeVicent Marti2010-06-021-1/+2
* Fixed topological sorting stuck in infinite loop.Vicent Marti2010-06-021-4/+10
* Fixed parsing commit times (they weren't being stored at all!)Vicent Marti2010-06-021-1/+8
* Changed commit time sorting to be descending (from newest to oldest).Vicent Marti2010-06-021-1/+1
* Add topological sorting and new insertion methods for commit lists.Vicent Marti2010-06-021-3/+65