Rename slothfs-expand-manifest to slothfs-deref-manifest.

This name describes better what the tool really does.

Change-Id: Ia0f4a369b7be7d915fc4fb45ed340d5d5a55545c
4 files changed
tree: 5bd25c0168e5ff6f51a3f5ab9b443d5b08c23077
  1. cache/
  2. cmd/
  3. cookie/
  4. docs/
  5. fs/
  6. gitiles/
  7. manifest/
  8. populate/
  9. .gitignore
  10. all.bash
  11. android.json
  12. CONTRIBUTING
  13. LICENSE
  14. README.md
README.md

SlothFS is a FUSE filesystem that provides light-weight, lazily downloaded, read-only checkouts of manifest-based Git projects. It is intended for use with Android.

How to use

To start the file system:

go install github.com/google/slothfs/cmd/slothfs-multifs
mkdir /tmp/mnt
slothfs-multifs /tmp/mnt &

To create a workspace “ws” corresponding to the latest manifest version

go install github.com/google/slothfs/cmd/slothfs-deref-manifest
slothfs-deref-manifest > /tmp/m.xml
ln -s /tmp/m.xml /tmp/mnt/config/ws

More details can be found in the manual.

DISCLAIMER

This is not an official Google product.