Git Notes: git's coolest, most unloved feature
ARANK
the short of it is: they’re cool for appending notes from automated systems (like ticket or build systems) but not really for having interactive conversations with other developers (at least not yet)– Scott Chacon, GitHub.blog, Aug. 2010Git notes are almost a secret.They’re buried by their own distressing usability.But git notes are continually rediscovered by engineers trying to stash metadata inside git.Sun, 30 Oct 2022 11:05 @simonwGit notes are powerful tools. And they could solve so many problems—if only they were better known and easier to use.🧐 What are git notes?A common use of git notes is tacking metadata onto commits.Once a commit cements itself in git’s history—that’s it. It’s impossible to amend a commit message buried deep in a repo’s log.But git notes enable you to amend new information about old commits in a special namespace. And they’re capable of so much more.Notes stow metadata about anything tracked by git—any object: commits, blobs, and trees. All w…