您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

commit_info.go 275B

1234567891011
  1. // Copyright 2017 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package git
  4. // CommitInfo describes the first commit with the provided entry
  5. type CommitInfo struct {
  6. Entry *TreeEntry
  7. Commit *Commit
  8. SubModuleFile *SubModuleFile
  9. }