jmtseng / RESTORE.md
PencilHu's picture
Upload RESTORE.md with huggingface_hub
4b36d8f verified
|
Raw
History Blame Contribute Delete
536 Bytes
# Restore
Download every file under `archives/` into one local directory, then extract
the independent tar shards in lexical order:
```bash
mkdir -p /path/to/restore
find archives -type f -name 'jmtseng-shard-*.tar' -print0 \
| sort -z \
| xargs -0 -I{} tar -xf "{}" -C /path/to/restore
```
The restored tree is `/path/to/restore/jmtseng`. Shards are independent tar
archives and must not be concatenated.
Nested `.git` directories and the files listed in `REDACTED_PATHS.txt` are
intentionally absent from the public snapshot.