From 2cfbc2852d88c3228bb833f2030fbf2308cc4aae Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Mon, 11 Feb 2019 13:26:14 +0000 Subject: [PATCH] docs: move --no-traverse docs to the correct section --- docs/content/docs.md | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/docs/content/docs.md b/docs/content/docs.md index 449331de0..c3d272ae7 100644 --- a/docs/content/docs.md +++ b/docs/content/docs.md @@ -670,6 +670,24 @@ uploaded compressed files. There is no need to set this in normal operation, and doing so will decrease the network transfer efficiency of rclone. +### --no-traverse ### + +The `--no-traverse` flag controls whether the destination file system +is traversed when using the `copy` or `move` commands. +`--no-traverse` is not compatible with `sync` and will be ignored if +you supply it with `sync`. + +If you are only copying a small number of files (or are filtering most +of the files) and/or have a large number of files on the destination +then `--no-traverse` will stop rclone listing the destination and save +time. + +However, if you are copying a large number of files, especially if you +are doing a copy where lots of the files under consideration haven't +changed and won't need copying then you shouldn't use `--no-traverse`. + +See [rclone copy](/commands/rclone_copy/) for an example of how to use it. + ### --no-update-modtime ### When using this flag, rclone won't update modification times of remote @@ -1188,24 +1206,6 @@ use it. Write memory profile to file. This can be analysed with `go tool pprof`. -### --no-traverse ### - -The `--no-traverse` flag controls whether the destination file system -is traversed when using the `copy` or `move` commands. -`--no-traverse` is not compatible with `sync` and will be ignored if -you supply it with `sync`. - -If you are only copying a small number of files (or are filtering most -of the files) and/or have a large number of files on the destination -then `--no-traverse` will stop rclone listing the destination and save -time. - -However, if you are copying a large number of files, especially if you -are doing a copy where lots of the files under consideration haven't -changed and won't need copying then you shouldn't use `--no-traverse`. - -See [rclone copy](/commands/rclone_copy/) for an example of how to use it. - Filtering ---------