From 73cae17ee2e161740521092f24078d0e5da7e69e Mon Sep 17 00:00:00 2001 From: Brady Johnson Date: Tue, 31 Oct 2023 23:13:00 -0600 Subject: [PATCH] Add aliases to linked terms; Fix typos --- content/docs/command-reference/exp/list.md | 2 +- content/docs/command-reference/move.md | 2 +- content/linked-terms.js | 12 ++++++++++++ 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/content/docs/command-reference/exp/list.md b/content/docs/command-reference/exp/list.md index 584026277b9..cba6bd81923 100644 --- a/content/docs/command-reference/exp/list.md +++ b/content/docs/command-reference/exp/list.md @@ -1,6 +1,6 @@ # exp list -> Aliased to `dvc ls`. +> Aliased to `dvc exp ls`. List experiments in a DVC repository (remote or local). diff --git a/content/docs/command-reference/move.md b/content/docs/command-reference/move.md index 64f252a1b16..3b5394f0aa0 100644 --- a/content/docs/command-reference/move.md +++ b/content/docs/command-reference/move.md @@ -1,6 +1,6 @@ # move -> Aliased to `dvc exp mv`. +> Aliased to `dvc mv`. Rename a file or directory tracked with a `.dvc` file, and modify the `.dvc` file to reflect the change. The `.dvc` file is renamed if the file or directory diff --git a/content/linked-terms.js b/content/linked-terms.js index 140e564faa3..1d1e139b127 100644 --- a/content/linked-terms.js +++ b/content/linked-terms.js @@ -30,5 +30,17 @@ module.exports = [ { matches: 'dvc ls', url: '/doc/command-reference/list' + }, + { + matches: 'dvc mv', + url: '/doc/command-reference/move' + }, + { + matches: 'dvc rm', + url: '/doc/command-reference/remove' + }, + { + matches: 'dvc exp rm', + url: '/doc/command-reference/exp/remove' } ]