|
|
|
|
|
by ymse
3793 days ago
|
|
> I used to also use append-only storage for changes in potentially buggy or malicious services. Sounds like that might be a good idea, too, to prevent some issues. In a certain sense, git is "append-only". If you change a commit in history, every ancestor commit will have its SHA hash changed. Naturally this will conflict with other copies of the repository. For backups you should do a "git clone --bare" which checks out the internal git structure with data and history, but not the actual files. |
|