Files
vim-ale/rclone
AJ ONeal 9f28505af7 ref: delete unreachable upstream-fetcher modules
Stacked on the modifications PR. Now that no live code path references
the per-package fetchers, the shared HTTP/parsing helpers, the
in-process normalizer, or the example template, delete them. Pure
deletion — no behavior change.

- ~93 per-package <pkg>/releases.js fetcher modules.
- _common/{brew,fetcher,git-tag,gitea,github,github-source,
  githubish,githubish-source}.js shared HTTP/parsing helpers.
- _webi/normalize.js in-process normalization layer (cache files
  arrive normalized from webicached).
- _example/releases.js fetcher template for new packages.

The Go cache daemon (webicached) is now the sole producer of release
metadata; the Node process never makes an upstream request.
2026-05-08 16:31:59 -06:00
..
2026-03-08 19:38:49 -06:00

title, homepage, tagline
title homepage tagline
rclone https://github.com/rclone/rclone rclone: "rsync for cloud storage".

To update or switch versions, run webi rclone@stable (or @v1.54, @beta, etc).

Cheat Sheet

rclone is like rsync, but optimized for cloud storage and SSDs. rclone is also faster than rsync for many use cases.

rclone is compatible with a wide range of cloud storage providers including:

  • Google Drive
  • S3
    • (AWS, Minio, Digital Ocean, etc)
  • Dropbox
  • Backblaze B2
  • One Drive
  • Swift
  • Hubic
  • Wasabi
  • Google Cloud Storage
  • Yandex Files

How to copy local files, like rsync

rclones cloud-first, SSD-first optimizations can cause performance issues when copying between HDDs. For performance more similar to cp (better than rsync) you can use the following options:

--tranfers=1 will only copy one file at a time, preventing thrashing and fragmentation.

--check-first will catalog files before copying.

--order-by name will copy files one directory at a time.

Example:

rclone sync -vP --transfers=1 --order-by name --check-first ~/ /Volumes/Backup/home

Example, excluding common temporary directories:

rclone sync -vP --transfers=1 --order-by name --check-first \
  --exclude 'node_modules/**' --exclude '.Spotlight-*/**' --exclude '.cache*/**' \
  ~/ /Volumes/Backup/home