Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

29
dvc-fetch Normal file
View File

@@ -0,0 +1,29 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# dvc fetch
> Download DVC tracked files and directories from a remote repository.
> More information: <https://dvc.org/doc/command-reference/fetch>.
- Fetch the latest changes from the default remote upstream repository (if set):
`dvc fetch`
- Fetch changes from a specific remote upstream repository:
`dvc fetch --remote {{remote_name}}`
- Fetch the latest changes for a specific target/s:
`dvc fetch {{target/s}}`
- Fetch changes for all branch and tags:
`dvc fetch --all-branches --all-tags`
- Fetch changes for all commits:
`dvc fetch --all-commits`