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.

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