summaryrefslogtreecommitdiff
path: root/revision.h
Commit message (Collapse)AuthorAgeFilesLines
...
* Move "parse_commit()" into common revision.h file.Linus Torvalds2005-04-171-0/+40
| | | | | | | | This also drops the old-style date parsing. We just don't care enough, since we dropped that format pretty early. Yes, this could do with some cleanup, and a common library file. Some day.
* Use common "revision.h" header for both fsck and rev-tree.Linus Torvalds2005-04-131-0/+114
It's really a very generic thing: the notion of one sha1 revision referring to another one. "fsck" uses it for all nodes, and "rev-tree" only tracks commit-node relationships, but the code was already the same - now we just make that explicit by moving it to a common header file.