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

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