import "go.chromium.org/luci/common/proto/git"
Package git contains Git-related protobuf definitions.
changetype.go commit.pb.go generate.go
var ( Commit_TreeDiff_ChangeType_name = map[int32]string{ 0: "ADD", 1: "COPY", 2: "DELETE", 3: "MODIFY", 4: "RENAME", } Commit_TreeDiff_ChangeType_value = map[string]int32{ "ADD": 0, "COPY": 1, "DELETE": 2, "MODIFY": 3, "RENAME": 4, } )
Enum value maps for Commit_TreeDiff_ChangeType.
var File_go_chromium_org_luci_common_proto_git_commit_proto protoreflect.FileDescriptor
type Commit struct { // The hex sha1 of the commit. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` // The hex sha1 of the tree for this commit. Tree string `protobuf:"bytes,2,opt,name=tree,proto3" json:"tree,omitempty"` // The hex sha1's of each of this commits' parents. Parents []string `protobuf:"bytes,3,rep,name=parents,proto3" json:"parents,omitempty"` Author *Commit_User `protobuf:"bytes,4,opt,name=author,proto3" json:"author,omitempty"` Committer *Commit_User `protobuf:"bytes,5,opt,name=committer,proto3" json:"committer,omitempty"` // This is the entire unaltered message body. Message string `protobuf:"bytes,6,opt,name=message,proto3" json:"message,omitempty"` TreeDiff []*Commit_TreeDiff `protobuf:"bytes,7,rep,name=tree_diff,json=treeDiff,proto3" json:"tree_diff,omitempty"` // contains filtered or unexported fields }
Commit is a single parsed commit as represented in a git log or git show expression.
Deprecated: Use Commit.ProtoReflect.Descriptor instead.
func (x *Commit) GetAuthor() *Commit_User
func (x *Commit) GetCommitter() *Commit_User
func (x *Commit) GetTreeDiff() []*Commit_TreeDiff
func (x *Commit) ProtoReflect() protoreflect.Message
type Commit_TreeDiff struct { // How this file changed. Type Commit_TreeDiff_ChangeType `protobuf:"varint,1,opt,name=type,proto3,enum=git.Commit_TreeDiff_ChangeType" json:"type,omitempty"` OldId string `protobuf:"bytes,2,opt,name=old_id,json=oldId,proto3" json:"old_id,omitempty"` OldMode uint32 `protobuf:"varint,3,opt,name=old_mode,json=oldMode,proto3" json:"old_mode,omitempty"` OldPath string `protobuf:"bytes,4,opt,name=old_path,json=oldPath,proto3" json:"old_path,omitempty"` NewId string `protobuf:"bytes,5,opt,name=new_id,json=newId,proto3" json:"new_id,omitempty"` NewMode uint32 `protobuf:"varint,6,opt,name=new_mode,json=newMode,proto3" json:"new_mode,omitempty"` NewPath string `protobuf:"bytes,7,opt,name=new_path,json=newPath,proto3" json:"new_path,omitempty"` // contains filtered or unexported fields }
Each TreeDiff represents a single file that's changed between this commit and the "previous" commit, where "previous" depends on the context of how this Commit object was produced (i.e. the specific `git log` invocation, or similar command).
Note that these are an artifact of the `git log` expression, not of the commit itself (since git log has different ways that it could sort the commits in the log, and thus different ways it could calculate these diffs). In particular, you should avoid caching the TreeDiff data using only the Commit.id as the key.
The old_* fields correspond to the matching file in the previous commit (in the case of COPY/DELETE/MODIFY/RENAME), telling its blob hash, file mode and path name.
The new_* fields correspond to the matching file in this commit (in the case of ADD/COPY/MODIFY/RENAME), telling its blob hash, file mode and path name.
func (*Commit_TreeDiff) Descriptor() ([]byte, []int)
Deprecated: Use Commit_TreeDiff.ProtoReflect.Descriptor instead.
func (x *Commit_TreeDiff) GetNewId() string
func (x *Commit_TreeDiff) GetNewMode() uint32
func (x *Commit_TreeDiff) GetNewPath() string
func (x *Commit_TreeDiff) GetOldId() string
func (x *Commit_TreeDiff) GetOldMode() uint32
func (x *Commit_TreeDiff) GetOldPath() string
func (x *Commit_TreeDiff) GetType() Commit_TreeDiff_ChangeType
func (*Commit_TreeDiff) ProtoMessage()
func (x *Commit_TreeDiff) ProtoReflect() protoreflect.Message
func (x *Commit_TreeDiff) Reset()
func (x *Commit_TreeDiff) String() string
const ( Commit_TreeDiff_ADD Commit_TreeDiff_ChangeType = 0 Commit_TreeDiff_COPY Commit_TreeDiff_ChangeType = 1 Commit_TreeDiff_DELETE Commit_TreeDiff_ChangeType = 2 Commit_TreeDiff_MODIFY Commit_TreeDiff_ChangeType = 3 Commit_TreeDiff_RENAME Commit_TreeDiff_ChangeType = 4 )
func (Commit_TreeDiff_ChangeType) Descriptor() protoreflect.EnumDescriptor
func (x Commit_TreeDiff_ChangeType) Enum() *Commit_TreeDiff_ChangeType
func (Commit_TreeDiff_ChangeType) EnumDescriptor() ([]byte, []int)
Deprecated: Use Commit_TreeDiff_ChangeType.Descriptor instead.
func (c *Commit_TreeDiff_ChangeType) MarshalJSON() ([]byte, error)
MarshalJSON returns a string representation of the change.
func (x Commit_TreeDiff_ChangeType) Number() protoreflect.EnumNumber
func (x Commit_TreeDiff_ChangeType) String() string
func (Commit_TreeDiff_ChangeType) Type() protoreflect.EnumType
func (c *Commit_TreeDiff_ChangeType) UnmarshalJSON(data []byte) error
UnmarshalJSON parses a string representation of the change.
type Commit_User struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` Email string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"` Time *timestamp.Timestamp `protobuf:"bytes,3,opt,name=time,proto3" json:"time,omitempty"` // contains filtered or unexported fields }
User represents the (name, email, timestamp) Commit header for author and/or commtter.
func (*Commit_User) Descriptor() ([]byte, []int)
Deprecated: Use Commit_User.ProtoReflect.Descriptor instead.
func (x *Commit_User) GetEmail() string
func (x *Commit_User) GetName() string
func (x *Commit_User) GetTime() *timestamp.Timestamp
func (*Commit_User) ProtoMessage()
func (x *Commit_User) ProtoReflect() protoreflect.Message
func (x *Commit_User) Reset()
func (x *Commit_User) String() string
Package git imports 9 packages (graph) and is imported by 23 packages. Updated 2021-01-25. Refresh now. Tools for package owners.