repo_object.go 188 B

1234567891011
  1. package git
  2. type ObjectType string
  3. const (
  4. OBJECT_COMMIT ObjectType = "commit"
  5. OBJECT_TREE ObjectType = "tree"
  6. OBJECT_BLOB ObjectType = "blob"
  7. OBJECT_TAG ObjectType = "tag"
  8. )