blob: 2e12dadc3a5906ed60d326a944fa26e472440c81 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Package objecttype provides object type constants and names.
package objecttype
// Type mirrors Git object type tags in packfiles.
type Type uint8
const (
TypeInvalid Type = 0
TypeCommit Type = 1
TypeTree Type = 2
TypeBlob Type = 3
TypeTag Type = 4
TypeFuture Type = 5
TypeOfsDelta Type = 6
TypeRefDelta Type = 7
)
|