git-module

git clone git://git.lin.moe/fork/git-module.git

 1package git
 2
 3// ObjectType is the type of a Git objet.
 4type ObjectType string
 5
 6// A list of object types.
 7const (
 8	ObjectCommit ObjectType = "commit"
 9	ObjectTree   ObjectType = "tree"
10	ObjectBlob   ObjectType = "blob"
11	ObjectTag    ObjectType = "tag"
12)