From ddb46d4fec0be9223799ff7f369423118afb4af1 Mon Sep 17 00:00:00 2001 From: pawel Date: Tue, 3 Mar 2020 12:59:09 +0100 Subject: [PATCH] fixup --- public/static/docs/command-reference/config.md | 6 ++++++ public/static/docs/command-reference/init.md | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/public/static/docs/command-reference/config.md b/public/static/docs/command-reference/config.md index 97b5f7f46f..204ee5752d 100644 --- a/public/static/docs/command-reference/config.md +++ b/public/static/docs/command-reference/config.md @@ -85,6 +85,12 @@ This is the main section with the general config options: project is on a file system that doesn't properly support file locking (e.g. [NFS v3 and older](http://nfs.sourceforge.net/)). +- `core.no_scm` - when set to `true`, prevents DVC from using scm (eg. + [Git](https://git-scm.com)), even if DVC repository lives inside + scm repository. This option is set when + [initializing](/doc/command-reference/init) DVC repository with + `--no-scm` flag. + ### remote These are sections in the config file that describe particular remotes. These diff --git a/public/static/docs/command-reference/init.md b/public/static/docs/command-reference/init.md index 771df82b6f..443f01acd2 100644 --- a/public/static/docs/command-reference/init.md +++ b/public/static/docs/command-reference/init.md @@ -31,7 +31,8 @@ local cache and you cannot `git push` it. written. - `--subdir` - initialize DVC repository in current directory and - allow to search for Git repository in parent directories + allow to search for Git repository in parent directories. If used in Git root + directory, this option is ignored. - `-f`, `--force` - remove `.dvc/` if it exists before initialization. Will remove any existing local cache. Useful when a previous `dvc init` has been