1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/restic.md
Marco Bonelli 2599a6de48 Refactor: change "folder" to "directory" where needed.
This commit fixes every instance in which the word "folder" is
incorrectly used instead of "directory".
2019-02-13 20:51:04 +05:30

27 lines
833 B
Markdown

# restic
> Fast, secure, efficient backup program.
- Initialize a backup repository in the specified local directory:
`restic init -r {{path/to/repository}}`
- Backup a directory to the repository:
`restic -r {{path/to/repository}} backup {{path/to/directory}}`
- Show backup snapshots currently stored in the repository:
`restic -r {{path/to/repository}} snapshots`
- Restore a specific backup snapshot to a target directory:
`restic -r {{path/to/repository}} restore {{snapshot_id}} {{path/to/target}}`
- Restore a specific path from a specific backup to a target directory:
`restic -r {{path/to/repository}} --include {{path/to/restore}} --target {{path/to/target}} restore {{snapshot_id}}`
- Clean up the repository and keep only the most recent snapshot of each unique backup:
`restic forget --keep-last 1 --prune`