1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 21:22:09 +02:00
tldr/pages/common/restic.md
Vitor Henrique c8f956319f
pages*: simplify page description (#12149)
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-02-14 21:25:13 +01:00

28 lines
913 B
Markdown

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