Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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