diff --git a/Scripts/Powershell/General Purpose/rClone.md b/Scripts/Powershell/General Purpose/rClone.md index 091fa36..9c75653 100644 --- a/Scripts/Powershell/General Purpose/rClone.md +++ b/Scripts/Powershell/General Purpose/rClone.md @@ -35,4 +35,11 @@ The following commands illustrate how to use bisync to synchronize a local folde - If the local file was newer, it deletes the older remote file and overwrites it with the newer local file ```powershell .\rclone.exe bisync "Local" "Remote" --create-empty-src-dirs --conflict-resolve newer --conflict-loser delete --compare size,modtime,checksum --resilient --log-level ERROR --drive-skip-gdocs --fix-case --force --progress + ``` + +=== "Repairing a Broken BiSync" + If you find your bisync has somehow gone awry, and you need to re-create the differencing databases that are used by rclone to determine which files are local and which are remote, you can run the following command to (non-destructively) re-build the databases to restore bisync functionality. + + ```powershell + .\rclone.exe bisync "Local" "Remote" --create-empty-src-dirs --conflict-resolve newer --conflict-loser delete --compare size,modtime,checksum --resilient --log-level ERROR --drive-skip-gdocs --fix-case --force --progress --resync ``` \ No newline at end of file