Skip to main content

Module note

Module note 

Source
Expand description

Git Note object implementation

Git Notes are a mechanism for adding metadata to existing Git objects (usually commits) without modifying the original objects. Notes are commonly used for:

  • Adding review comments or approval metadata
  • Storing CI/CD build status and code scan results
  • Attaching author signatures, annotations, or other metadata

In Git’s object model, Notes are stored as Blob objects, with the association between notes and target objects managed through the refs/notes/* namespace.

Structs§

Note
Git Note object structure