選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

notes.go 405B

1234567891011121314
  1. // Copyright 2019 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package git
  4. // NotesRef is the git ref where Gitea will look for git-notes data.
  5. // The value ("refs/notes/commits") is the default ref used by git-notes.
  6. const NotesRef = "refs/notes/commits"
  7. // Note stores information about a note created using git-notes.
  8. type Note struct {
  9. Message []byte
  10. Commit *Commit
  11. }