From d85a8357938475195ec2886e4b36171212ccd9e5 Mon Sep 17 00:00:00 2001 From: Ruslan Kuprieiev Date: Sun, 3 May 2020 22:12:07 +0300 Subject: [PATCH] docs: add `status -R` description (#1219) Fixes https://github.com/iterative/dvc.org/issues/1217 --- content/docs/command-reference/status.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/content/docs/command-reference/status.md b/content/docs/command-reference/status.md index e521184339..53b5ef0880 100644 --- a/content/docs/command-reference/status.md +++ b/content/docs/command-reference/status.md @@ -9,7 +9,7 @@ and remote storage. ```usage usage: dvc status [-h] [-v] [-j ] [-q] [-c] - [-r ] [-a] [-T] [-d] [--all-commits] + [-r ] [-a] [-T] [-d] [-R] [--all-commits] [targets [targets ...]] positional arguments: @@ -113,6 +113,10 @@ workspace) is different from remote storage. Bringing the two into sync requires the workspace. Note that both options can be combined, for example using the `-aT` flag. +- `-R`, `--recursive` - determines the files to check status for by searching + each target directory and its subdirectories for DVC-files to inspect. If + there are no directories among the targets, this option is ignored. + - `--all-commits` - same as `-a` or `-T` above, but applies to _all_ Git commits as well as the workspace. Useful for comparing cache content for the entire existing commit history of the project.