|
|
|
|
|
by skissane
787 days ago
|
|
> For (1) there's stuff like BTRFS snapshots, From what I understand, BTRFS snapshots are time-based. Whereas, in classic versioned file systems, a "snapshot" is triggered by open/close operations – each time you open a file for writing, that creates a new snapshot. > or you could use Git on top of the FS Git requires your application to have explicit support for working with Git repos, it isn't seamless. And I know some people have built FUSE-on-Git implementations (there are a few around), but (I believe) they've all got various limitations and I don't believe (I could be wrong) that any of them is quite the same experience as a true versioned filesystem |
|
With these caveats, using FUSE it should be easy to do, wonder why noone actually implemented it.