blob: 7a317479ea7d98099ab0c9656db655dee5c09df1 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package typ
// Type represents a Git object type.
type Type uint8
const (
// TypeBlob represents a Git blob.
TypeBlob Type = iota
// TypeTree represents a Git tree.
TypeTree
// TypeCommit represents a Git commit.
TypeCommit
// TypeTag represents a Git tag.
TypeTag
)
|