Welcome to mirror list, hosted at ThFree Co, Russian Federation.

object.go « catfile « git « internal - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 04363ad21cb071724a196b414cd62e9d8567ec85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package catfile

import (
	"io"
)

// Object represents data returned by `git cat-file --batch`
type Object struct {
	// ObjectInfo represents main information about object
	ObjectInfo
	// Reader provides raw data about object. It differs for each type of object(tag, commit, tree, log, etc.)
	io.Reader
}