pending

Manage pending changes.

Manage files pending sync. Files can be out of sync and become pending for several reasons:

  • FAILED: Changes can fail to upload or download.
  • IGNORED: Changes can be ignored by the user.
  • EXCLUDED: Changes can be excluded by exclusion rules.
  • OFFLOADED: File can be offloaded by the user.
  • NEW, UPDATED, DELETED: Change can be held by sync rules.

Usage: sync pending list [--full] [failed | ignored | excluded | offloaded | new | deleted | updated]

List the pending files and folders filtered by type and path.

Parameters:

  • --full: Include full path
  • pattern: Filter list by path pattern.

Example:

List all locally deleted files that have not been commited to cloud storage.

sync> pending list --full deleted *
/Users/peter/doc/project: DELETED UPLOAD
/Users/peter/doc/tmp: DELETED UPLOAD
sync>

Usage: sync pending download [failed | ignored | excluded | offloaded | new | deleted | updated]

Download pending downloads filtered by path and type.

Parameters:

  • pattern: Filter list by path pattern.

Example:

Download all new files a push mount is holding.

sync> pending download new *
/Users/peter/doc/project/overview.rtf: DOWNLOADED
sync>

Usage: sync pending upload [failed | ignored | excluded | offloaded | new | deleted | updated]

Upload pending upload filtered by path and type.

Parameters:

  • pattern: Filter list by path pattern.

Example:

Commit local deletes to cloud storage.

sync> pending upload deleted *
/Users/peter/doc/project/junk.rtf: DELETED
sync>

Usage: sync pending undo [failed | ignored | excluded | offloaded | new | deleted | updated]

Undo pending change by uploading pending download or downloading pending upload.

Parameters:

  • pattern: Filter list by path pattern.

Example:

Recover locally deleted files from cloud storage.

sync> pending undo deleted *
/Users/peter/doc/project/junk.rtf: DOWNLOADED
sync>