Hadn't heard about this feature, but as I understand it, the notes are stored as commits, just not in the same namespace/on the same branch as you are working on.
A note on a commit is stored as a text file, named with the commit id (git sha). The file is revision controlled by git, usually under refs/notes/commits.
You can 'git checkout refs/notes/commits' and see the structure.
7 comments
[ 3.2 ms ] story [ 29.9 ms ] threadHadn't heard about this feature, but as I understand it, the notes are stored as commits, just not in the same namespace/on the same branch as you are working on.
You can 'git checkout refs/notes/commits' and see the structure.