Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ A macOS utility to replace duplicate file data with a copy-on-write clone.

**dedup** `[-PVnvx]` [`-t` **threads**] [`-d` **depth**] [*file ...*]

# WARNING: Block Corruption Risk

APFS cloning deduplicates storage by making all instances of a file reference the same underlying block.
**If that block becomes corrupted, all cloned instances are affected.**
This is generally fine for software projects where files can be regenerated or checked out again,
but it poses a risk for unique or irreplaceable files.

To mitigate this, ensure you maintain separate backups on different hardware.
Cloning **should not** be considered a substitute for a proper backup strategy.

# DESCRIPTION

**dedup** finds files with identical content using the provided *file* arguments.
Expand Down