I use git notes in my repository. Sometimes I need to find a commit with note that includes given string. So far I was using this command:
git log --show-notes=* --grep="PATTERN" --format=format:%H
The problem here is that this prints every commit SHA with PATTERN, even if it's not in notes only in commit message. Is there a better way for that?
Notes are stored in a
COMMIT
edTREE
that's "hidden" off to the side under a notes ref (refs/notes/commits
by default). That means you can process them just like content.