CHECKPOINT overhaul 2
This commit is contained in:
parent
5cd2700396
commit
a8e1cc45ef
|
@ -0,0 +1,12 @@
|
|||
|
||||
`datman backup-one <sourceName> <destName>`
|
||||
`datman backup-all <destName>`
|
||||
Backs up now (either just one source or all sources) to a destination.
|
||||
|
||||
With `--config <>`, use a specified Datman config file; otherwise try current directory.
|
||||
|
||||
|
||||
|
||||
..
|
||||
`datman extract <sourceName>` with same filtering options as now.
|
||||
(unimportant: Yama tools should be decent for this right now.)
|
|
@ -0,0 +1,11 @@
|
|||
# Summary
|
||||
|
||||
- [Yama](./yama/index.md)
|
||||
- [Getting Started](./yama/getting_started.md)
|
||||
- [Internals](./yama/internals.md)
|
||||
- [Raw Piles](./yama/internals/raw-piles.md)
|
||||
- [Pointers and Nodes](./yama/internals/pointers-and-nodes.md)
|
||||
- [Datman](./datman/index.md)
|
||||
- [Getting Started](./datman/getting_started.md)
|
||||
- [Remote Backups](./datman/remote_backups.md)
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
# Summary
|
||||
|
||||
- [Yama](./yama/index.md)
|
||||
- [Getting Started](./yama/getting_started.md)
|
||||
- [Internals](./yama/internals.md)
|
||||
- [Raw Piles](./yama/internals/raw-piles.md)
|
||||
- [Pointers and Nodes](./yama/internals/pointers-and-nodes.md)
|
||||
- [Datman](./datman/index.md)
|
||||
- [Getting Started](./datman/getting_started.md)
|
||||
- [Remote Backups](./datman/remote_backups.md)
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# Using a Zstd dictionary with Yama
|
||||
|
||||
## Creating a Zstd dictionary
|
||||
|
||||
|
|
@ -874,7 +874,7 @@ mod tests {
|
|||
};
|
||||
|
||||
let mut child_full = child_diff.clone();
|
||||
integrate_node_in_place(&mut child_full, &parent).unwrap();
|
||||
integrate_node_in_place(&mut child_full, &parent);
|
||||
|
||||
let expected_child_full = TreeNode::Directory {
|
||||
ownership: FilesystemOwnership { uid: 47, gid: 49 },
|
||||
|
|
Loading…
Reference in New Issue