@canpolat@programming.devM to Git@programming.devEnglish • 1 year agoWhat's the most creative or unconventional use of Git you've encountered?message-square24arrow-up151file-text
arrow-up151message-squareWhat's the most creative or unconventional use of Git you've encountered?@canpolat@programming.devM to Git@programming.devEnglish • 1 year agomessage-square24file-text
minus-square@Corbin@programming.devlinkfedilinkEnglish4•1 year agoI’ve put ASTs directly into git repositories by encoding each leaf as a blob and each tree as a tree. Since git objects are content-addressed, this gives deduplication of ASTs for free, including CSE for sufficiently-pure ASTs.
I’ve put ASTs directly into git repositories by encoding each leaf as a
blob
and each tree as atree
. Since git objects are content-addressed, this gives deduplication of ASTs for free, including CSE for sufficiently-pure ASTs.