code.gitea.io/gitea@v1.19.3/modules/git/commit_info.go (about) 1 // Copyright 2017 The Gitea Authors. All rights reserved. 2 // SPDX-License-Identifier: MIT 3 4 package git 5 6 // CommitInfo describes the first commit with the provided entry 7 type CommitInfo struct { 8 Entry *TreeEntry 9 Commit *Commit 10 SubModuleFile *SubModuleFile 11 }