Archipel Deltas
Archipel is a change-oriented versioning software, which foundation is the concept of undoable command, aka delta. This document presents a list of currently available deltas.
File deltas
File creation delta
| Pre | No file at the same location in the parent version |
| Effect | A file is created at the location in the current version |
| Data | The entire data of the new file |
| Depends | None |
File change delta
| Pre | A file must exist at the same location in the parent delta |
| Effect | The file at the same location is modified to contain the new data |
| Data | The information required to update the old file to the new file |
| Depends | A previous file change or creation delta |
File copy delta
| Pre | No file at the same location in the parent version |
| Effect | Copies a file already under version control in the parent version to another location |
| Data | None |
| Depends | An existing file creation, change or copy in the parent version. |