Output:
✅ Delta created: 2.3 MB (was 45 MB) ✅ Applied in 0.8 sec ✅ Checksum match Pipe support cat old.bin | delta create - new.bin > delta.bin Dry run (preview changes) delta apply base/ delta.file --dry-run Recursive directory delta delta create --recursive --follow-symlinks src_v1/ src_v2/ -o src.delta Delta from git diff git diff HEAD~1 HEAD --binary > changes.patch delta convert git changes.patch -o delta.bin 8. Troubleshooting | Error | Likely cause | Fix | |-------|--------------|-----| | Delta magic mismatch | Corrupt or wrong delta file | Recreate delta | | Base hash mismatch | Base file changed since delta creation | Use original base or force --no-hash-check | | Out of memory | Large file + chunk size too big | Reduce chunk_size_kb in config | | Apply failed at offset X | Binary diff corruption | Enable --repair flag | -NEW- Project Delta Script
"version": "2", "algorithm": "bsdiff", "compression": "zstd", "chunk_size_kb": 64, "exclude_patterns": [".tmp", ".log", "node_modules"], "checksum": "blake3", "output_format": "binary" Output: ✅ Delta created: 2