Add revwalk support

This commit is contained in:
Carlos Martín Nieto
2013-04-02 17:12:43 +02:00
parent 011068f51c
commit 58aff1e129
8 changed files with 229 additions and 0 deletions

View File

@@ -1,11 +1,13 @@
-record(ref, {handle, type :: atom()}).
-record(repo, {handle}).
-record(odb, {handle}).
-record(revwalk, {handle}).
-record(oid, {oid}).
-record(object, {type :: atom(), handle}).
-type ref() :: #ref{}.
-type repo() :: #repo{}.
-type revwalk() :: #revwalk{}.
-type odb() :: #odb{}.
-type oid() :: #oid{}.
-type object() :: #object{}.