Ви не можете вибрати більше 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. }