docs: move --no-traverse docs to the correct section

This commit is contained in:
Nick Craig-Wood 2019-02-11 13:26:14 +00:00
parent b167d30420
commit 2cfbc2852d

View file

@ -670,6 +670,24 @@ uploaded compressed files.
There is no need to set this in normal operation, and doing so will There is no need to set this in normal operation, and doing so will
decrease the network transfer efficiency of rclone. 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 ### ### --no-update-modtime ###
When using this flag, rclone won't update modification times of remote 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`. 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 Filtering
--------- ---------