Documentation ¶
Overview ¶
Package git contains Git-related protobuf definitions.
Index ¶
- Variables
- type Commit
- func (*Commit) Descriptor() ([]byte, []int)
- func (m *Commit) GetAuthor() *Commit_User
- func (m *Commit) GetCommitter() *Commit_User
- func (m *Commit) GetId() string
- func (m *Commit) GetMessage() string
- func (m *Commit) GetParents() []string
- func (m *Commit) GetTree() string
- func (m *Commit) GetTreeDiff() []*Commit_TreeDiff
- func (*Commit) ProtoMessage()
- func (m *Commit) Reset()
- func (m *Commit) String() string
- func (m *Commit) XXX_DiscardUnknown()
- func (m *Commit) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *Commit) XXX_Merge(src proto.Message)
- func (m *Commit) XXX_Size() int
- func (m *Commit) XXX_Unmarshal(b []byte) error
- type Commit_TreeDiff
- func (*Commit_TreeDiff) Descriptor() ([]byte, []int)
- func (m *Commit_TreeDiff) GetNewId() string
- func (m *Commit_TreeDiff) GetNewMode() uint32
- func (m *Commit_TreeDiff) GetNewPath() string
- func (m *Commit_TreeDiff) GetOldId() string
- func (m *Commit_TreeDiff) GetOldMode() uint32
- func (m *Commit_TreeDiff) GetOldPath() string
- func (m *Commit_TreeDiff) GetType() Commit_TreeDiff_ChangeType
- func (*Commit_TreeDiff) ProtoMessage()
- func (m *Commit_TreeDiff) Reset()
- func (m *Commit_TreeDiff) String() string
- func (m *Commit_TreeDiff) XXX_DiscardUnknown()
- func (m *Commit_TreeDiff) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *Commit_TreeDiff) XXX_Merge(src proto.Message)
- func (m *Commit_TreeDiff) XXX_Size() int
- func (m *Commit_TreeDiff) XXX_Unmarshal(b []byte) error
- type Commit_TreeDiff_ChangeType
- type Commit_User
- func (*Commit_User) Descriptor() ([]byte, []int)
- func (m *Commit_User) GetEmail() string
- func (m *Commit_User) GetName() string
- func (m *Commit_User) GetTime() *timestamp.Timestamp
- func (*Commit_User) ProtoMessage()
- func (m *Commit_User) Reset()
- func (m *Commit_User) String() string
- func (m *Commit_User) XXX_DiscardUnknown()
- func (m *Commit_User) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *Commit_User) XXX_Merge(src proto.Message)
- func (m *Commit_User) XXX_Size() int
- func (m *Commit_User) XXX_Unmarshal(b []byte) error
Constants ¶
This section is empty.
Variables ¶
var Commit_TreeDiff_ChangeType_name = map[int32]string{
0: "ADD",
1: "COPY",
2: "DELETE",
3: "MODIFY",
4: "RENAME",
}
var Commit_TreeDiff_ChangeType_value = map[string]int32{
"ADD": 0,
"COPY": 1,
"DELETE": 2,
"MODIFY": 3,
"RENAME": 4,
}
Functions ¶
This section is empty.
Types ¶
type Commit ¶
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"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
Commit is a single parsed commit as represented in a git log or git show expression.
func (*Commit) Descriptor ¶
func (*Commit) GetAuthor ¶
func (m *Commit) GetAuthor() *Commit_User
func (*Commit) GetCommitter ¶
func (m *Commit) GetCommitter() *Commit_User
func (*Commit) GetMessage ¶
func (*Commit) GetParents ¶
func (*Commit) GetTreeDiff ¶
func (m *Commit) GetTreeDiff() []*Commit_TreeDiff
func (*Commit) ProtoMessage ¶
func (*Commit) ProtoMessage()
func (*Commit) XXX_DiscardUnknown ¶
func (m *Commit) XXX_DiscardUnknown()
func (*Commit) XXX_Marshal ¶
func (*Commit) XXX_Unmarshal ¶
type Commit_TreeDiff ¶
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"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
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 ¶
func (*Commit_TreeDiff) Descriptor() ([]byte, []int)
func (*Commit_TreeDiff) GetNewId ¶
func (m *Commit_TreeDiff) GetNewId() string
func (*Commit_TreeDiff) GetNewMode ¶
func (m *Commit_TreeDiff) GetNewMode() uint32
func (*Commit_TreeDiff) GetNewPath ¶
func (m *Commit_TreeDiff) GetNewPath() string
func (*Commit_TreeDiff) GetOldId ¶
func (m *Commit_TreeDiff) GetOldId() string
func (*Commit_TreeDiff) GetOldMode ¶
func (m *Commit_TreeDiff) GetOldMode() uint32
func (*Commit_TreeDiff) GetOldPath ¶
func (m *Commit_TreeDiff) GetOldPath() string
func (*Commit_TreeDiff) GetType ¶
func (m *Commit_TreeDiff) GetType() Commit_TreeDiff_ChangeType
func (*Commit_TreeDiff) ProtoMessage ¶
func (*Commit_TreeDiff) ProtoMessage()
func (*Commit_TreeDiff) Reset ¶
func (m *Commit_TreeDiff) Reset()
func (*Commit_TreeDiff) String ¶
func (m *Commit_TreeDiff) String() string
func (*Commit_TreeDiff) XXX_DiscardUnknown ¶
func (m *Commit_TreeDiff) XXX_DiscardUnknown()
func (*Commit_TreeDiff) XXX_Marshal ¶
func (m *Commit_TreeDiff) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*Commit_TreeDiff) XXX_Merge ¶
func (m *Commit_TreeDiff) XXX_Merge(src proto.Message)
func (*Commit_TreeDiff) XXX_Size ¶
func (m *Commit_TreeDiff) XXX_Size() int
func (*Commit_TreeDiff) XXX_Unmarshal ¶
func (m *Commit_TreeDiff) XXX_Unmarshal(b []byte) error
type Commit_TreeDiff_ChangeType ¶
type Commit_TreeDiff_ChangeType int32
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) EnumDescriptor ¶
func (Commit_TreeDiff_ChangeType) EnumDescriptor() ([]byte, []int)
func (*Commit_TreeDiff_ChangeType) MarshalJSON ¶
func (c *Commit_TreeDiff_ChangeType) MarshalJSON() ([]byte, error)
MarshalJSON returns a string representation of the change.
func (Commit_TreeDiff_ChangeType) String ¶
func (x Commit_TreeDiff_ChangeType) String() string
func (*Commit_TreeDiff_ChangeType) UnmarshalJSON ¶
func (c *Commit_TreeDiff_ChangeType) UnmarshalJSON(data []byte) error
UnmarshalJSON parses a string representation of the change.
type Commit_User ¶
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"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
User represents the (name, email, timestamp) Commit header for author and/or commtter.
func (*Commit_User) Descriptor ¶
func (*Commit_User) Descriptor() ([]byte, []int)
func (*Commit_User) GetEmail ¶
func (m *Commit_User) GetEmail() string
func (*Commit_User) GetName ¶
func (m *Commit_User) GetName() string
func (*Commit_User) GetTime ¶
func (m *Commit_User) GetTime() *timestamp.Timestamp
func (*Commit_User) ProtoMessage ¶
func (*Commit_User) ProtoMessage()
func (*Commit_User) Reset ¶
func (m *Commit_User) Reset()
func (*Commit_User) String ¶
func (m *Commit_User) String() string
func (*Commit_User) XXX_DiscardUnknown ¶
func (m *Commit_User) XXX_DiscardUnknown()
func (*Commit_User) XXX_Marshal ¶
func (m *Commit_User) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*Commit_User) XXX_Merge ¶
func (m *Commit_User) XXX_Merge(src proto.Message)
func (*Commit_User) XXX_Size ¶
func (m *Commit_User) XXX_Size() int
func (*Commit_User) XXX_Unmarshal ¶
func (m *Commit_User) XXX_Unmarshal(b []byte) error