←back to thread

752 points crazypython | 2 comments | | HN request time: 0.41s | source
Show context
justincormack ◴[] No.26370863[source]
I collected all the git for data open source projects I could find a few months back, there have been a bunch of interesting approaches https://docs.google.com/spreadsheets/d/1jGQY_wjj7dYVne6toyzm...
replies(3): >>26370977 #>>26371065 #>>26386760 #
1. chub500 ◴[] No.26370977[source]
I've had a fairly long-term side project working on git for chronological data (data is a cause and effect DAG), know of anybody doing that?
replies(1): >>26371221 #
2. michaelmure ◴[] No.26371221[source]
It might not be exactly what you are looking for, but git-bug[1] is encoding data into regular git objects, with merges and conflict resolution. I'm mentioning this because the hard part is providing an ordering of events. Once you have that you can store and recreate whatever state you want.

This branch[2] I'm almost done with remove the purely linear branch constraint and allow to use full DAGs (that is, concurrent edition) and still provide a good ordering.

[1]: https://github.com/MichaelMure/git-bug [2]: https://github.com/MichaelMure/git-bug/pull/532