2016-11-04 03:46:01 +05:30
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package git
|
|
|
|
|
2016-12-22 15:00:52 +05:30
|
|
|
// ObjectType git object type
|
2016-11-04 03:46:01 +05:30
|
|
|
type ObjectType string
|
|
|
|
|
|
|
|
const (
|
2016-12-22 15:00:52 +05:30
|
|
|
// ObjectCommit commit object type
|
|
|
|
ObjectCommit ObjectType = "commit"
|
|
|
|
// ObjectTree tree object type
|
|
|
|
ObjectTree ObjectType = "tree"
|
|
|
|
// ObjectBlob blob object type
|
|
|
|
ObjectBlob ObjectType = "blob"
|
|
|
|
// ObjectTag tag object type
|
|
|
|
ObjectTag ObjectType = "tag"
|
2016-11-04 03:46:01 +05:30
|
|
|
)
|