Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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. }