Skip to content

Commit

Permalink
Merge pull request #2098 from iterative/2.0/pipelines
Browse files Browse the repository at this point in the history
DVC File guide reorg/rewrite
  • Loading branch information
jorgeorpinel authored Jan 27, 2021
2 parents 9aac657 + 983a2c3 commit d9ce9a3
Show file tree
Hide file tree
Showing 16 changed files with 568 additions and 793 deletions.
4 changes: 2 additions & 2 deletions content/docs/command-reference/params/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ The `dvc params diff` command is available to show parameter changes, displaying
their current and previous values.

💡 Parameters can also be used for
[templating](/doc/user-guide/dvc-files/advanced-dvc.yaml#templating) `dvc.yaml`
itself.
[templating](/doc/user-guide/project-structure/pipelines-files#templating)
`dvc.yaml` itself.

## Options

Expand Down
33 changes: 16 additions & 17 deletions content/docs/sidebar.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,34 +89,33 @@
"children": [
{
"label": "What is DVC?",
"slug": "what-is-dvc",
"source": "what-is-dvc.md"
"slug": "what-is-dvc"
},
{
"label": "DVC Files",
"slug": "dvc-files",
"slug": "project-structure",
"source": "user-guide/project-structure/index.md",
"children": [
{
"label": ".dvc files",
"slug": ".dvc"
"label": "Pipelines Files (dvc.yaml)",
"slug": "pipelines-files"
},
{
"label": "dvc.yaml & dvc.lock",
"slug": "dvc-yaml"
"label": ".dvc Files",
"slug": "dvc-files"
},
{
"label": "Advanced dvc.yaml",
"slug": "advanced-dvc-yaml"
"label": ".dvcignore Files",
"slug": "dvcignore-files",
"tutorials": {
"katacoda": "https://katacoda.com/dvc/courses/examples/dvcignore"
}
},
{
"label": "Internal Files",
"slug": "internal-files"
}
]
},
"dvc-internals",
{
"slug": "dvcignore",
"tutorials": {
"katacoda": "https://katacoda.com/dvc/courses/examples/dvcignore"
}
},
{
"label": "How To",
"slug": "how-to",
Expand Down
6 changes: 3 additions & 3 deletions content/docs/start/data-versioning.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ $ dvc add data/data.xml

DVC stores information about the added file (or a directory) in a special `.dvc`
file named `data/data.xml.dvc`, a small text file with a human-readable
[format](/doc/user-guide/dvc-files/.dvc). This file can be easily versioned like
source code with Git, as a placeholder for the original data (which gets listed
in `.gitignore`):
[format](/doc/user-guide/project-structure/dvc-files). This file can be easily
versioned like source code with Git, as a placeholder for the original data
(which gets listed in `.gitignore`):

```dvc
$ git add data/data.xml.dvc data/.gitignore
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,8 @@ then `git commit` `.dvc` files that contain file hashes that point to cached
data.

In this case we created `data.dvc` and `model.h5.dvc`. Refer to
[DVC Files](/doc/user-guide/dvc-files#dvc-files) to learn more about how these
files work.
[DVC Files](/doc/user-guide/project-structure/dvc-files) to learn more about how
these files work.

</details>

Expand Down
257 changes: 0 additions & 257 deletions content/docs/user-guide/dvc-files.md

This file was deleted.

Loading

0 comments on commit d9ce9a3

Please sign in to comment.