summaryrefslogtreecommitdiff
path: root/src/commit.c
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* Fixed linked list tail being lost when sorting.Vicent Marti2010-06-021-6/+6
* Added sort method for commit lists.Vicent Marti2010-06-021-3/+57
* Add commit caching on the commit table.Vicent Marti2010-06-021-0/+6
* Add 'git_revpool_object' and 'git_revpool_table' structures.Vicent Marti2010-06-021-8/+6
* Changed 'git_commit_list' from a linked list to a doubly-linked list.Vicent Marti2010-06-021-22/+83
* Add arbritrary ordering revision walking.Vicent Marti2010-06-021-7/+8
* Split git_commit_lookup into separate functions.Vicent Marti2010-06-021-19/+49
* Add commit parents to parsed commits and commit lists to the revpool.Vicent Marti2010-06-021-1/+44
* Add unit tests for Commit parsingVicent Marti2010-06-021-0/+3